diff --git a/src/game/Creature.cpp b/src/game/Creature.cpp index 61d62dd38..e8b2a20d6 100644 --- a/src/game/Creature.cpp +++ b/src/game/Creature.cpp @@ -1982,7 +1982,7 @@ void Creature::SetInCombatWithZone() { if (!CanHaveThreatList()) { - error_log("Creature entry %u call SetInCombatWithZone but creature cannot have threat list.", GetEntry()); + sLog.outError("Creature entry %u call SetInCombatWithZone but creature cannot have threat list.", GetEntry()); return; } @@ -1990,7 +1990,7 @@ void Creature::SetInCombatWithZone() if (!pMap->IsDungeon()) { - error_log("Creature entry %u call SetInCombatWithZone for map (id: %u) that isn't an instance.", GetEntry(), pMap->GetId()); + sLog.outError("Creature entry %u call SetInCombatWithZone for map (id: %u) that isn't an instance.", GetEntry(), pMap->GetId()); return; } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 044be343f..f413d0132 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "8057" + #define REVISION_NR "8058" #endif // __REVISION_NR_H__