diff options
author | megamage <none@none> | 2009-03-21 14:28:02 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-03-21 14:28:02 -0600 |
commit | 59ce40e484db3eb5be7cd7abbd3bf07b02b22e26 (patch) | |
tree | 1c006f2490d31fbc3afa8ff7d3debbcf6d568aae /src/game/Unit.cpp | |
parent | 3fd85fa5cddaad2759fcb72ed76ab0bb73185934 (diff) |
*Remove dual ERROR in logs Author: AlexDereka
--HG--
branch : trunk
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 0ccabfb2054..af26cdbfa2f 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -10876,7 +10876,7 @@ float Unit::GetModifierValue(UnitMods unitMod, UnitModifierType modifierType) co { if( unitMod >= UNIT_MOD_END || modifierType >= MODIFIER_TYPE_END) { - sLog.outError("ERROR: trial to access non existed modifier value from UnitMods!"); + sLog.outError("trial to access non existed modifier value from UnitMods!"); return 0.0f; } @@ -10906,7 +10906,7 @@ float Unit::GetTotalAuraModValue(UnitMods unitMod) const { if(unitMod >= UNIT_MOD_END) { - sLog.outError("ERROR: trial to access non existed UnitMods in GetTotalAuraModValue()!"); + sLog.outError("trial to access non existed UnitMods in GetTotalAuraModValue()!"); return 0.0f; } @@ -12418,7 +12418,7 @@ Pet* Unit::CreateTamedPetFrom(Creature* creatureTarget,uint32 spell_id) if(!pet->InitStatsForLevel(level)) { - sLog.outError("ERROR: Pet::InitStatsForLevel() failed for creature (Entry: %u)!",creatureTarget->GetEntry()); + sLog.outError("Pet::InitStatsForLevel() failed for creature (Entry: %u)!",creatureTarget->GetEntry()); delete pet; return NULL; } |