Core: Warning fixes

This commit is contained in:
Shauren
2013-02-03 14:11:59 +01:00
parent 54924f18af
commit b346459ca8
4 changed files with 6 additions and 3 deletions

View File

@@ -298,7 +298,7 @@ class boss_lord_marrowgar : public CreatureScript
case DATA_SPIKE_IMMUNE + 1:
case DATA_SPIKE_IMMUNE + 2:
{
int32 index = type - DATA_SPIKE_IMMUNE;
uint32 index = uint32(type - DATA_SPIKE_IMMUNE);
if (index < _boneSpikeImmune.size())
return _boneSpikeImmune[index];