diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-01-15 16:43:01 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-01-15 16:43:01 +0000 |
commit | 7c66f59d7fa170410b8a046008b48b6d67fa36d7 (patch) | |
tree | b37cf453885a28a3b277c0b5ab612770328a077d /src/map/atcommand.c | |
parent | 320b8e22f24cf05fe179fdf4da0f129930986482 (diff) | |
download | hercules-7c66f59d7fa170410b8a046008b48b6d67fa36d7.tar.gz hercules-7c66f59d7fa170410b8a046008b48b6d67fa36d7.tar.bz2 hercules-7c66f59d7fa170410b8a046008b48b6d67fa36d7.tar.xz hercules-7c66f59d7fa170410b8a046008b48b6d67fa36d7.zip |
- Probably fixed the registration flood protection code being broken.
- Readded a commented piece of code that's meant to prevent @warp from printing "invalid target cell!" messages on the console.
- Joint Break should only re-start the bleeding timer when it currently IS the one that causes bleeding.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9653 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index e1c622462..66cb74141 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -1342,10 +1342,11 @@ int atcommand_rura( return -1; } - /*if ((x || y) && map_getcell(m, x, y, CELL_CHKNOPASS)) { + if ((x || y) && map_getcell(m, x, y, CELL_CHKNOPASS)) + { //This is to prevent the pc_setpos call from printing an error. clif_displaymessage(fd, msg_txt(2)); x = y = 0; //Invalid cell, use random spot. - }*/ + } if (map[m].flag.nowarpto && battle_config.any_warp_GM_min_level > pc_isGM(sd)) { clif_displaymessage(fd, msg_txt(247)); return -1; |