diff --git a/utils/mods/legacy_combat.lua b/utils/mods/legacy_combat.lua index 133322ceb..3232d8da0 100644 --- a/utils/mods/legacy_combat.lua +++ b/utils/mods/legacy_combat.lua @@ -75,9 +75,8 @@ function MeleeMitigation(e) e.hit.base_damage ) ); - - -- Shouldn't this be using the client e.self instead of e.other ? - e.hit.damage_done = 2 * e.hit.base_damage * GetDamageTable(e.other, e.hit.skill) / 100; + + e.hit.damage_done = 2 * e.hit.base_damage * GetDamageTable(e.self, e.hit.skill) / 100; e.hit = DoMeleeMitigation(e.self, e.other, e.hit, e.opts); return e;