mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-19 17:05:44 +01:00
Core/Spells: use std::floor instead of floor
This commit is contained in:
@@ -579,7 +579,7 @@ int32 SpellEffectInfo::CalcValue(Unit const* caster, int32 const* bp, Unit const
|
||||
}
|
||||
}
|
||||
|
||||
return uint32(floor(value + 0.5f));
|
||||
return uint32(std::floor(value + 0.5f));
|
||||
}
|
||||
|
||||
int32 SpellEffectInfo::CalcBaseValue(int32 value) const
|
||||
|
||||
Reference in New Issue
Block a user