diff options
Diffstat (limited to 'src/map/skill.c')
-rw-r--r-- | src/map/skill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index e07e24917..a4559e0c6 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -8492,7 +8492,7 @@ int skill_use_id (struct map_session_data *sd, int target_id, int skill_num, int if(sd->bl.id != target_id){ // Don't check range for self skills, this is useless...
if(!battle_check_range(&sd->bl,bl,skill_get_range2(&sd->bl, skill_num,skill_lv)
- +(skill_num==RG_CLOSECONFINE)?0:1)) //Close confine is expoitable thanks to this extra range "feature" of the client. [Skotlex]
+ +(skill_num==RG_CLOSECONFINE?0:1))) //Close confine is expoitable thanks to this extra range "feature" of the client. [Skotlex]
return 0;
}
|