Fix issue with requesting an adventure

This commit is contained in:
Michael Cook (mackal) 2014-09-01 02:58:52 -04:00
parent eebe902917
commit 8422178233

View File

@ -715,7 +715,7 @@ bool AdventureManager::LoadAdventureEntries()
std::list<AdventureTemplate*> temp;
auto iter = adventure_entries.find(id);
if(iter == adventure_entries.end())
if(iter != adventure_entries.end())
temp = adventure_entries[id];
temp.push_back(tid);