[Bug Fix] Fix Starting Items SQL (#3766)

* [Bug Fix] Fix Starting Items SQL

# Notes
- `race_list` comes before `class_list`,query had them in the wrong order.

* Real fix.

* Update database_update_manifest.cpp

* Manifest change

* Repository generate

---------

Co-authored-by: Akkadius <akkadius1@gmail.com>
This commit is contained in:
Alex King
2023-12-16 01:45:27 -05:00
committed by GitHub
parent d0443db199
commit 553bafdbe1
4 changed files with 53 additions and 36 deletions
+1 -1
View File
@@ -506,7 +506,7 @@ bool SharedDatabase::SetStartingItems(
for (const auto &e : v) {
const uint32 item_id = e.item_id;
const uint8 item_charges = e.item_charges;
int32 slot = e.slot;
int32 slot = e.inventory_slot;
item_data = GetItem(item_id);