summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-02-17 23:08:19 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-02-17 23:08:19 +0000
commit92af24a6cad29368bef742c612700496238a7113 (patch)
treeeee91eaa0e99a2598d23d7db490b2f69cadf5cb7 /src/map/clif.c
parentbd87659caaefbea725a7f87b874be016259da11b (diff)
downloadhercules-92af24a6cad29368bef742c612700496238a7113.tar.gz
hercules-92af24a6cad29368bef742c612700496238a7113.tar.bz2
hercules-92af24a6cad29368bef742c612700496238a7113.tar.xz
hercules-92af24a6cad29368bef742c612700496238a7113.zip
Fixed a typo from r9778, allowing non-gm chars to use /kick
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9875 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index a10a27501..198b7de79 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -10800,7 +10800,7 @@ void clif_parse_GMKick(int fd, struct map_session_data *sd) {
if (battle_config.atc_gmonly && !pc_isGM(sd))
return;
- if (pc_isGM(sd) >= (lv=get_atcommand_level(AtCommand_Kick)))
+ if (pc_isGM(sd) < (lv=get_atcommand_level(AtCommand_Kick)))
return;
tid = RFIFOL(fd,2);