diff options
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 35fb3a5381c..514a7b8d33a 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -6445,7 +6445,7 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger {
// Shaman T8 Elemental 4P Bonus case 64928: { - basepoints0 = int32( damage*0.08 ); + basepoints0 = int32( triggerAmount * damage / 100 ); triggered_spell_id = 64930; break; } |