diff options
Diffstat (limited to 'src/map/skill.c')
-rw-r--r-- | src/map/skill.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index 5b931e99f..b060e7db5 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -6224,7 +6224,14 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, in break; case AS_SPLASHER: - if(tstatus->mode&MD_BOSS || tstatus-> hp > tstatus->max_hp*3/4) { + if(tstatus->mode&MD_BOSS + /** + * Renewal dropped the 3/4 hp requirement + **/ + #if isOFF(REMODE) + || tstatus-> hp > tstatus->max_hp*3/4 + #endif + ) { if (sd) clif_skill_fail(sd,skillid,USESKILL_FAIL_LEVEL,0); map_freeblock_unlock(); return 1; |