diff options
author | Spp <spp@jorge.gr> | 2012-10-24 13:29:34 +0200 |
---|---|---|
committer | Spp <spp@jorge.gr> | 2012-10-24 15:34:48 +0200 |
commit | 013fb1f4d9131fc8ec45931445e6a05408dce8f9 (patch) | |
tree | dcdc34368a9a53d27826895b91683b7b7358c476 /src/server/game/Conditions/ConditionMgr.cpp | |
parent | ca85c3b4759c111fa8dd277a037aab7a0968dbaf (diff) |
Core/Misc: reduced amount of string memory allocations (Step I)
Diffstat (limited to 'src/server/game/Conditions/ConditionMgr.cpp')
-rwxr-xr-x | src/server/game/Conditions/ConditionMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Conditions/ConditionMgr.cpp b/src/server/game/Conditions/ConditionMgr.cpp index 7b609220c30..72f00406c69 100755 --- a/src/server/game/Conditions/ConditionMgr.cpp +++ b/src/server/game/Conditions/ConditionMgr.cpp @@ -661,7 +661,7 @@ ConditionList ConditionMgr::GetConditionsForVehicleSpell(uint32 creatureId, uint CreatureSpellConditionContainer::const_iterator itr = VehicleSpellConditionStore.find(creatureId); if (itr != VehicleSpellConditionStore.end()) { - ConditionTypeContainer::const_iterator i = (*itr).second.find(spellId); + ConditionTypeContainer::const_iterator i = (*itr).second.find(spellId); if (i != (*itr).second.end()) { cond = (*i).second; |