diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-21 02:46:55 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-21 02:46:55 +0000 |
commit | a4183d04185255b16decebd8d7a3dd6c7549a3dc (patch) | |
tree | 52ca994027a11b5274191195b79f2539bd55c2bf /src/map | |
parent | f5a887e525a764f1cc9817311b6eabf168e04701 (diff) | |
download | hercules-a4183d04185255b16decebd8d7a3dd6c7549a3dc.tar.gz hercules-a4183d04185255b16decebd8d7a3dd6c7549a3dc.tar.bz2 hercules-a4183d04185255b16decebd8d7a3dd6c7549a3dc.tar.xz hercules-a4183d04185255b16decebd8d7a3dd6c7549a3dc.zip |
Reverted the basilica knockback patch (r12852( because it causes bad position desync (bugreport:1710).
Needs a correct implementation.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12869 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/unit.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/map/unit.c b/src/map/unit.c index 2858a9b6d..06a0a07bf 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -220,13 +220,7 @@ static int unit_walktoxy_timer(int tid, unsigned int tick, int id, intptr data) if(i > 0) ud->walktimer = add_timer(tick+i,unit_walktoxy_timer,id,i); - - if (map_getcell(bl->m,x,y,CELL_CHKBASILICA)) { - skill_blown(bl,bl,2,unit_getdir(bl),0); - clif_fixpos(bl); - } - - if(ud->state.running) { + else if(ud->state.running) { //Keep trying to run. if (!unit_run(bl)) ud->state.running = 0; |