Merge pull request #493 from daerath/master

Loadlootdrops (shareddb.cpp) not exiting on error
This commit is contained in:
Alex 2016-01-21 21:46:50 -08:00
commit 211306f9be

View File

@ -1920,6 +1920,7 @@ void SharedDatabase::LoadLootDrops(void *data, uint32 size) {
"ON lootdrop.id = lootdrop_entries.lootdrop_id ORDER BY lootdrop_id";
auto results = QueryDatabase(query);
if (!results.Success()) {
return;
}
uint32 current_id = 0;