Core/Player: Fix wrong format specifier in a log message

(introduced in 230e820898)
This commit is contained in:
Carbenium
2015-11-14 16:17:07 +01:00
parent 39a5844c6e
commit e8ea7b5ede

View File

@@ -1036,7 +1036,7 @@ void ObjectMgr::LoadCreatureAddons()
if (std::find(creatureAddon.auras.begin(), creatureAddon.auras.end(), spellId) != creatureAddon.auras.end())
{
TC_LOG_ERROR("sql.sql", "Creature (GUID: %u) has duplicate aura (spell %lu) in `auras` field in `creature_addon`.", guid, spellId);
TC_LOG_ERROR("sql.sql", "Creature (GUID: " UI64FMTD ") has duplicate aura (spell %lu) in `auras` field in `creature_addon`.", guid, spellId);
continue;
}