Now TrinityCore2 support 3.2.2a client, need extract new maps and dbc files. thx TOM_RUS, Win32, Machiavelli, VladimirMangos and all trinitycore team

--HG--
branch : trunk
This commit is contained in:
n0n4m3
2009-12-18 08:01:29 +01:00
parent 7ad293b4e7
commit 7971bda0ea
2 changed files with 3 additions and 3 deletions

View File

@@ -42,7 +42,7 @@ Corpse::Corpse(CorpseType type) : WorldObject()
lootForBody = false;
if(type != CORPSE_BONES)
if (type != CORPSE_BONES)
m_isWorldObject = true;
}

View File

@@ -74,8 +74,8 @@ bool VendorItemData::RemoveItem( uint32 item_id )
size_t VendorItemData::FindItemSlot(uint32 item_id) const
{
for (size_t i = 0; i < m_items.size(); ++i )
if(m_items[i]->item==item_id)
for (size_t i = 0; i < m_items.size(); ++i)
if (m_items[i]->item==item_id)
return i;
return m_items.size();
}