Updated for NWNEE 37-13
Updated for NWNEE 37-13. Updated NWNxEE scripts. CODI Core AI tweaks. Added Diamond Golem AI. Full compile. Updated release archive.
This commit is contained in:
@@ -2,7 +2,6 @@
|
||||
/// @brief Interface to Redis PUBSUB
|
||||
/// @{
|
||||
/// @file nwnx_redis_ps.nss
|
||||
#include "nwnx"
|
||||
|
||||
/// A redis PUBSUB message
|
||||
struct NWNX_Redis_PubSubMessageData {
|
||||
@@ -15,9 +14,9 @@ struct NWNX_Redis_PubSubMessageData {
|
||||
struct NWNX_Redis_PubSubMessageData NWNX_Redis_GetPubSubMessageData()
|
||||
{
|
||||
struct NWNX_Redis_PubSubMessageData ret;
|
||||
NWNX_CallFunction("NWNX_Redis", "GetPubSubData");
|
||||
ret.message = NWNX_GetReturnValueString();
|
||||
ret.channel = NWNX_GetReturnValueString();
|
||||
NWNXCall("NWNX_Redis", "GetPubSubData");
|
||||
ret.message = NWNXPopString();
|
||||
ret.channel = NWNXPopString();
|
||||
return ret;
|
||||
}
|
||||
/// @}
|
||||
|
Reference in New Issue
Block a user