summaryrefslogtreecommitdiff
path: root/src/map/battle.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-01-22 13:13:57 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-01-22 13:13:57 +0000
commit8127768000292c09723018883029ff8a154acc19 (patch)
tree4e05695864dbd28dde93f56ec5153123b4895eaa /src/map/battle.c
parentf473fd8efada1697eb9e55cc0523801f2bdd629d (diff)
downloadhercules-8127768000292c09723018883029ff8a154acc19.tar.gz
hercules-8127768000292c09723018883029ff8a154acc19.tar.bz2
hercules-8127768000292c09723018883029ff8a154acc19.tar.xz
hercules-8127768000292c09723018883029ff8a154acc19.zip
- Removed hom_setting&02 (ignore skill range) as this was fixed by Gravity some time ago.
- Moved pc_delinvincibletimer from unit_removemap to unit_free as the previous method has a logic glitch that could cause an on-place event to trigger after the on-left event. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12130 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/battle.c')
-rw-r--r--src/map/battle.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/map/battle.c b/src/map/battle.c
index cd04f4428..437f95253 100644
--- a/src/map/battle.c
+++ b/src/map/battle.c
@@ -3276,10 +3276,6 @@ bool battle_check_range(struct block_list *src,struct block_list *bl,int range)
if(src->m != bl->m) // 違うマップ
return false;
-
- if(src->type == BL_HOM && battle_config.hom_setting&0x2)
- ; //WTF, way to go Aegis and your awesome bugs.
- else
if (!check_distance_bl(src, bl, range))
return false;