mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-17 19:05:42 +00:00
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:
@@ -3333,7 +3333,7 @@ void ObjectMgr::LoadPlayerInfo()
|
||||
continue;
|
||||
}
|
||||
|
||||
int32 amount = fields[3].GetInt8();
|
||||
int32 amount = fields[3].GetUInt16();
|
||||
|
||||
if (!amount)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user