summaryrefslogtreecommitdiff
path: root/src/map/atcommand.c
diff options
context:
space:
mode:
authorsketchyphoenix <sketchyphoenix@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-02-24 01:17:36 +0000
committersketchyphoenix <sketchyphoenix@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-02-24 01:17:36 +0000
commit22c17ec129a57ecd08ca69805d718bb3dce07c94 (patch)
tree039c27e8d212f7290fba9f89b4d8ee1d89559779 /src/map/atcommand.c
parent0c2aa46ad3af72ade35d6389a5227f7b8bc0c3c0 (diff)
downloadhercules-22c17ec129a57ecd08ca69805d718bb3dce07c94.tar.gz
hercules-22c17ec129a57ecd08ca69805d718bb3dce07c94.tar.bz2
hercules-22c17ec129a57ecd08ca69805d718bb3dce07c94.tar.xz
hercules-22c17ec129a57ecd08ca69805d718bb3dce07c94.zip
Replaced giving dummy sd gm levels in script commands atcommand and charcommand with a check by internal flag.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13546 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r--src/map/atcommand.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index e40645a83..7836cefcb 100644
--- a/src/map/atcommand.c
+++ b/src/map/atcommand.c
@@ -9028,7 +9028,8 @@ bool is_atcommand(const int fd, struct map_session_data* sd, const char* message
//Grab the command information and check for the proper GM level required to use it or if the command exists
info = get_atcommandinfo_byname(command);
- if( info == NULL || info->func == NULL || ( *atcmd_msg == atcommand_symbol && pc_isGM(sd) < info->level ) || ( *atcmd_msg == charcommand_symbol && pc_isGM(sd) < info->level2 ) )
+ if( info == NULL || info->func == NULL || ( *atcmd_msg == atcommand_symbol && ((info) ? 99:pc_isGM(sd)) < info->level )
+ || ( *atcmd_msg == charcommand_symbol && ((info) ? 99:pc_isGM(sd)) < info->level2 ) )
{
sprintf(output, msg_txt(153), command); // "%s is Unknown Command."
clif_displaymessage(fd, output);