summaryrefslogtreecommitdiff
path: root/src/map/unit.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-08 23:28:03 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-08 23:28:03 +0000
commitd6f412e47f44df59adb315665bae64c22cf64bb0 (patch)
tree138f661a75a45ff55c5e2923347eee73844aa8de /src/map/unit.c
parentf673ec583e417b7df360edd69baf51add58aa36b (diff)
downloadhercules-d6f412e47f44df59adb315665bae64c22cf64bb0.tar.gz
hercules-d6f412e47f44df59adb315665bae64c22cf64bb0.tar.bz2
hercules-d6f412e47f44df59adb315665bae64c22cf64bb0.tar.xz
hercules-d6f412e47f44df59adb315665bae64c22cf64bb0.zip
- Removed the fixpos packet sending when damaged. Aegis sends no such packet.
- Fixed warp-portal being unusable if it was invoked through an item script. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6522 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/unit.c')
-rw-r--r--src/map/unit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/unit.c b/src/map/unit.c
index bbb73ecdd..01814b296 100644
--- a/src/map/unit.c
+++ b/src/map/unit.c
@@ -676,9 +676,9 @@ int unit_set_walkdelay(struct block_list *bl, unsigned int tick, int delay, int
{ //Stop walking, if chasing, readjust timers.
if (delay == 1)
{ //Minimal delay (walk-delay) disabled. Just stop walking.
- unit_stop_walking(bl,1);
+ unit_stop_walking(bl,0);
} else {
- unit_stop_walking(bl,3);
+ unit_stop_walking(bl,2);
if(ud->target)
add_timer(ud->canmove_tick+1, unit_walktobl_sub, bl->id, ud->target);
}