From 984cc102a163de5299f0e028787587472b04a97e Mon Sep 17 00:00:00 2001 From: Bryce Allen Date: Wed, 5 Aug 2015 22:27:09 -0500 Subject: [PATCH] fix lance damage --- mhapi/damage.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mhapi/damage.py b/mhapi/damage.py index aa1ed17..cace0e8 100644 --- a/mhapi/damage.py +++ b/mhapi/damage.py @@ -254,7 +254,9 @@ class WeaponMonsterDamage(object): elif self.damage_type == WeaponType.IMPACT: hitbox = hitbox_impact elif self.damage_type == WeaponType.MIXED: - hitbox = max(hitbox_cut, hitbox_impact) + # Info from /u/ShadyFigure, see + # https://www.reddit.com/r/MonsterHunter/comments/3fr2u0/124th_weekly_stupid_question_thread/cts3hz8?context=3 + hitbox = max(hitbox_cut, hitbox_impact * .72) raw = raw_damage(self.true_raw, self.sharpness, self.affinity, hitbox, self.motion)