aboutsummaryrefslogtreecommitdiff
path: root/src/game/GossipDef.cpp
diff options
context:
space:
mode:
authormegamage <none@none>2008-12-08 16:34:03 -0600
committermegamage <none@none>2008-12-08 16:34:03 -0600
commitce643187f06cd0b3829ab90deff335f5c9ec5a84 (patch)
treedc09eece1fc5dce2a942bdc27a4a045518ef9daa /src/game/GossipDef.cpp
parent5321be4c0aa48daaf84ffd602d47e650e53403ef (diff)
*Update to Mangos 6888. Source: Mangos.
*Major change: Make corpse erase async, Avoid DB access on deleting guild member. *Skip 6885 because of performance concern. --HG-- branch : trunk
Diffstat (limited to 'src/game/GossipDef.cpp')
-rw-r--r--src/game/GossipDef.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/GossipDef.cpp b/src/game/GossipDef.cpp
index 666144d51b2..bd9589e0579 100644
--- a/src/game/GossipDef.cpp
+++ b/src/game/GossipDef.cpp
@@ -334,7 +334,7 @@ void QuestMenu::AddMenuItem( uint32 QuestId, uint8 Icon)
bool QuestMenu::HasItem( uint32 questid )
{
- for (QuestMenuItemList::iterator i = m_qItems.begin(); i != m_qItems.end(); i++)
+ for (QuestMenuItemList::iterator i = m_qItems.begin(); i != m_qItems.end(); ++i)
{
if(i->m_qId==questid)
{