fix(Core/LootItemStorage): missing write of 'conditionLootId' (#6950)

This commit is contained in:
天鹿 2021-07-23 19:16:14 +08:00 committed by GitHub
parent 05694a43ce
commit fdfa9e3c57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -97,6 +97,7 @@ void LootItemStorage::AddNewStoredLoot(Loot* loot, Player* /*player*/)
stmt->setBool(index++, false);
stmt->setBool(index++, false);
stmt->setBool(index++, false);
stmt->setUInt32(index++, 0);
trans->Append(stmt);
}