summaryrefslogtreecommitdiff
path: root/src/map/map.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-01 00:32:54 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-01 00:32:54 +0000
commit58d4cb0ae8affce8115d965bb03206b9bb692820 (patch)
tree084965d54ad1d7c5ed78ecbcc0bc045823ccc2e8 /src/map/map.c
parent6e909c5fe0ac44b801febce0076cf9866082899f (diff)
downloadhercules-58d4cb0ae8affce8115d965bb03206b9bb692820.tar.gz
hercules-58d4cb0ae8affce8115d965bb03206b9bb692820.tar.bz2
hercules-58d4cb0ae8affce8115d965bb03206b9bb692820.tar.xz
hercules-58d4cb0ae8affce8115d965bb03206b9bb692820.zip
- Fixed NPC_STOP id value in skill_cast_db
- Bladestop will no longer stop when you push either of the characters around. - Fixed Enchant Poison having a near 100% chance of poisoning target on attack. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8015 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.c')
-rw-r--r--src/map/map.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/map.c b/src/map/map.c
index d217f0b35..2e198bb0d 100644
--- a/src/map/map.c
+++ b/src/map/map.c
@@ -498,8 +498,8 @@ int map_moveblock(struct block_list *bl, int x1, int y1, unsigned int tick) {
status_change_end(bl, SC_CLOSECONFINE, -1);
if (sc->data[SC_CLOSECONFINE2].timer != -1)
status_change_end(bl, SC_CLOSECONFINE2, -1);
- if (sc->data[SC_BLADESTOP].timer != -1)
- status_change_end(bl, SC_BLADESTOP, -1);
+// if (sc->data[SC_BLADESTOP].timer != -1) //Won't stop when you are knocked away, go figure...
+// status_change_end(bl, SC_BLADESTOP, -1);
}
}
if (moveblock) map_delblock_sub(bl,0);