diff options
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/hub.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt index 50a9e11d1..8db4929ef 100644 --- a/npc/functions/hub.txt +++ b/npc/functions/hub.txt @@ -298,7 +298,7 @@ function script HUB_SkillInvoke { break; // FIXME: Weapon Overload attack case TMW2_OVERLOAD: - .@PW=200+(@skillLv > 3 ? @skillLv)+(@skillLv > 7 ? @skillLv*2); + .@PW=200+(@skillLv > 3 ? @skillLv : 0)+(@skillLv > 7 ? @skillLv*2 : 0); areaharm(@skillTarget, 0, AdjustAttackpower(.@PW), HARM_MISC); break; // Magic v3 |