diff options
Diffstat (limited to 'src/map/battle.c')
-rw-r--r-- | src/map/battle.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/battle.c b/src/map/battle.c index 0973ff68d..1d1b5437d 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -3299,6 +3299,9 @@ int battle_check_range(struct block_list *src,struct block_list *bl,int range) if(src->m != bl->m) // 違うマップ return 0; + if(src->type == BL_HOM && battle_config.hom_setting&0x2) + return 1; //WTF, way to go Aegis and your awesome bugs. + if (!check_distance_bl(src, bl, range)) return 0; |