diff options
Diffstat (limited to 'src/map/unit.c')
-rw-r--r-- | src/map/unit.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/map/unit.c b/src/map/unit.c index fa6c075db..bd738e786 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -660,8 +660,9 @@ int unit_stop_walking(struct block_list *bl,int type) if(bl->type == BL_PET && type&~0xff) ud->canmove_tick = gettick() + (type>>8); - if (ud->state.running) - status_change_end(bl, SC_RUN, -1); + //Don't stop running because of dmg, just apply the instant stop then keep running [Kevin] + //if (ud->state.running) + // status_change_end(bl, SC_RUN, -1); return 1; } |