fix(Core/playercreateinfo_item): Alter amount of allowed items (#3122)

* Change table `amount` to SMALLINT Unsigned

* Add a note column

* Remove deprecated item
This commit is contained in:
Kitzunu
2020-08-03 15:01:22 +02:00
committed by GitHub
parent 3f1adefbd5
commit 4e76485037
2 changed files with 8 additions and 1 deletions

View File

@@ -3333,7 +3333,7 @@ void ObjectMgr::LoadPlayerInfo()
continue;
}
int32 amount = fields[3].GetInt8();
int32 amount = fields[3].GetUInt16();
if (!amount)
{