diff options
author | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-01-03 12:01:43 +0000 |
---|---|---|
committer | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-01-03 12:01:43 +0000 |
commit | e83c989677addb0eb333f9917a116549cd147bae (patch) | |
tree | 0c0d27678ca17137bac989c3766749c1d0d8b56e /src/map/atcommand.c | |
parent | b1f782455b315a2bce76cb8b0564a8dfd3cdc680 (diff) | |
download | hercules-e83c989677addb0eb333f9917a116549cd147bae.tar.gz hercules-e83c989677addb0eb333f9917a116549cd147bae.tar.bz2 hercules-e83c989677addb0eb333f9917a116549cd147bae.tar.xz hercules-e83c989677addb0eb333f9917a116549cd147bae.zip |
- Fixed FIFO defines in TURBO mode.
Ref: http://www.eathena.ws/board/index.php?showtopic=129766
The rest of the TURBO related errors are about the HEAD defines having to be at the start of a block because they contain a variable declaration. (i won't fix these)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9611 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 41aa7becd..0d595bef3 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -5011,13 +5011,13 @@ int atcommand_kickall( nullpo_retr(-1, sd); pl_allsd = map_getallusers(&users); - + for (i = 0; i < users; i++) { if ((pl_sd = pl_allsd[i]) && pc_isGM(sd) >= pc_isGM(pl_sd)) { // you can kick only lower or same gm level if (sd->status.account_id != pl_sd->status.account_id) clif_GM_kick(sd, pl_sd, 0); - } } + } clif_displaymessage(fd, msg_txt(195)); // All players have been kicked! |