mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-20 01:15:35 +01:00
Core/Spells: round final values for more precise results for small aura values
This commit is contained in:
@@ -579,7 +579,7 @@ int32 SpellEffectInfo::CalcValue(Unit const* caster, int32 const* bp, Unit const
|
||||
}
|
||||
}
|
||||
|
||||
return int32(value);
|
||||
return uint32(floor(value + 0.5f));
|
||||
}
|
||||
|
||||
int32 SpellEffectInfo::CalcBaseValue(int32 value) const
|
||||
|
||||
Reference in New Issue
Block a user