diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-02-21 00:51:22 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-02-21 00:51:22 +0000 |
commit | af5b388d15012339101c2028bb55f9798b185f17 (patch) | |
tree | e356b28405e00f51abe6912d076b3f8901e37ac1 /src/map/atcommand.h | |
parent | d9dd828fb28802edf9573179826fdbaca50e4828 (diff) | |
download | hercules-af5b388d15012339101c2028bb55f9798b185f17.tar.gz hercules-af5b388d15012339101c2028bb55f9798b185f17.tar.bz2 hercules-af5b388d15012339101c2028bb55f9798b185f17.tar.xz hercules-af5b388d15012339101c2028bb55f9798b185f17.zip |
Changes to how right-click gm kick checks gm privileges:
* moved @kick gm level check to the part that kicks players
* added @killmonster gm level check to the part that kills monsters
* added missing reply to client in the part that unloads npcs
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14250 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.h')
-rw-r--r-- | src/map/atcommand.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/atcommand.h b/src/map/atcommand.h index 30ef3f297..37ce87ca3 100644 --- a/src/map/atcommand.h +++ b/src/map/atcommand.h @@ -37,6 +37,7 @@ int atcommand_broadcast(const int fd, struct map_session_data* sd,const char* co int atcommand_localbroadcast(const int fd, struct map_session_data* sd,const char* command, const char* message); int atcommand_reset(const int fd, struct map_session_data* sd,const char* command, const char* message); int atcommand_unloadnpc(const int fd, struct map_session_data* sd, const char* command, const char* message); +int atcommand_killmonster(const int fd, struct map_session_data* sd, const char* command, const char* message); #define MAX_MSG 1000 extern char* msg_table[MAX_MSG]; |