mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 01:37:00 +00:00
Some command handlers renames and declaration sorting.
This commit is contained in:
parent
42cf4db28b
commit
83f034ae5d
5 changed files with 76 additions and 76 deletions
|
|
@ -36,7 +36,7 @@
|
|||
#include "VMapFactory.h"
|
||||
#endif
|
||||
|
||||
bool ChatHandler::HandleSayCommand(const char* args)
|
||||
bool ChatHandler::HandleNpcSayCommand(const char* args)
|
||||
{
|
||||
if(!*args)
|
||||
return false;
|
||||
|
|
@ -54,7 +54,7 @@ bool ChatHandler::HandleSayCommand(const char* args)
|
|||
return true;
|
||||
}
|
||||
|
||||
bool ChatHandler::HandleYellCommand(const char* args)
|
||||
bool ChatHandler::HandleNpcYellCommand(const char* args)
|
||||
{
|
||||
if(!*args)
|
||||
return false;
|
||||
|
|
@ -73,7 +73,7 @@ bool ChatHandler::HandleYellCommand(const char* args)
|
|||
}
|
||||
|
||||
//show text emote by creature in chat
|
||||
bool ChatHandler::HandleTextEmoteCommand(const char* args)
|
||||
bool ChatHandler::HandleNpcTextEmoteCommand(const char* args)
|
||||
{
|
||||
if(!*args)
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue