diff options
author | rud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-28 14:41:25 +0000 |
---|---|---|
committer | rud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-28 14:41:25 +0000 |
commit | 7158896a63c7150b8a1cb181d398929c9c481ea0 (patch) | |
tree | e7df8c504f36d776881c550f9de2087f1120706a /src/map/unit.c | |
parent | 56f3c515d8d537df42c8598e685ee8c87682fbc0 (diff) | |
download | hercules-7158896a63c7150b8a1cb181d398929c9c481ea0.tar.gz hercules-7158896a63c7150b8a1cb181d398929c9c481ea0.tar.bz2 hercules-7158896a63c7150b8a1cb181d398929c9c481ea0.tar.xz hercules-7158896a63c7150b8a1cb181d398929c9c481ea0.zip |
Fixed bugreport:6127 remove the double duration bonus from GC_RESEARCHEWPOISON
Fixed bugreport:6109 GN_CARTBOOST should now give atk bonus and fixed some genetic skills damage ratio and behavior
Fixed bugreport:6121 Rolling cutter's counter should now only be removed by walking and Cross Ripper Slasher
Fixed bugreport:6100 Cart should now can't be removed when character dies
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16353 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/unit.c')
-rw-r--r-- | src/map/unit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/unit.c b/src/map/unit.c index 2fc70d31e..b45312949 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -163,6 +163,7 @@ static int unit_walktoxy_timer(int tid, unsigned int tick, int id, intptr_t data y += dy; map_moveblock(bl, x, y, tick); ud->walk_count++; //walked cell counter, to be used for walk-triggered skills. [Skotlex] + status_change_end(bl, SC_ROLLINGCUTTER, INVALID_TIMER); //If you move, you lose your counters. [malufett] if (bl->x != x || bl->y != y || ud->walktimer != INVALID_TIMER) return 0; //map_moveblock has altered the object beyond what we expected (moved/warped it) |