aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnubisss <none@none>2010-06-11 01:55:04 +0200
committerAnubisss <none@none>2010-06-11 01:55:04 +0200
commitd9d6e5732d0e07d6975e99ca32b146b9d6aa8944 (patch)
tree600574bb4aa32b0a5c47625f26dfd4038329d510
parent148f55481490f02c6fe16dc1b8916bb8e90c50c2 (diff)
Add NULL rows for 2 ChatCommand table.
--HG-- branch : trunk
-rw-r--r--src/server/game/Chat/Chat.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/server/game/Chat/Chat.cpp b/src/server/game/Chat/Chat.cpp
index 10fec8fbe4f..a976a2fcafc 100644
--- a/src/server/game/Chat/Chat.cpp
+++ b/src/server/game/Chat/Chat.cpp
@@ -133,11 +133,13 @@ ChatCommand * ChatHandler::getCommandTable()
static ChatCommand channelSetCommandTable[] =
{
{ "public", SEC_ADMINISTRATOR, true, &ChatHandler::HandleChannelSetPublic, "", NULL },
+ { NULL, 0, false, NULL, "", NULL }
};
static ChatCommand channelCommandTable[] =
{
{ "set", SEC_ADMINISTRATOR, true, NULL, "", channelSetCommandTable },
+ { NULL, 0, false, NULL, "", NULL }
};
static ChatCommand debugPlayCommandTable[] =