summaryrefslogtreecommitdiff
path: root/src/scripts/Commands/cs_message.cpp
diff options
context:
space:
mode:
authorYehonal <yehonal.azeroth@gmail.com>2016-08-20 09:49:37 +0200
committerYehonal <yehonal.azeroth@gmail.com>2016-08-20 09:49:37 +0200
commit1b1767e9f4c20d1e20541968de98d00814f63247 (patch)
treeee95040cf29644aff151f9aebdf3bfd9e18ae08d /src/scripts/Commands/cs_message.cpp
parentd7fdf7c940317aebcbbeeaf156469e1571e01498 (diff)
Fix commands and starting to use nullptr instead of NULL
Diffstat (limited to 'src/scripts/Commands/cs_message.cpp')
-rw-r--r--src/scripts/Commands/cs_message.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/scripts/Commands/cs_message.cpp b/src/scripts/Commands/cs_message.cpp
index 0782c5e360..6214a19653 100644
--- a/src/scripts/Commands/cs_message.cpp
+++ b/src/scripts/Commands/cs_message.cpp
@@ -32,8 +32,7 @@ public:
{ "gmannounce", SEC_GAMEMASTER, true, &HandleGMAnnounceCommand, "" },
{ "notify", SEC_GAMEMASTER, true, &HandleNotifyCommand, "" },
{ "gmnotify", SEC_GAMEMASTER, true, &HandleGMNotifyCommand, "" },
- { "whispers", SEC_GAMEMASTER, false, &HandleWhispersCommand, "" },
- { NULL, 0, false, NULL, "" }
+ { "whispers", SEC_GAMEMASTER, false, &HandleWhispersCommand, "" }
};
return commandTable;
}