mirror of
https://github.com/mangosfour/server.git
synced 2025-12-16 13:37:00 +00:00
Fix item Unk0 field type as expected signed and related log output.
Also restore item class check at server loading but not subclass check. Problems only with subclass check case.
This commit is contained in:
parent
b19c0da601
commit
c0824b35c6
5 changed files with 17 additions and 12 deletions
|
|
@ -809,9 +809,9 @@ struct GtRegenMPPerSptEntry
|
|||
struct ItemEntry
|
||||
{
|
||||
uint32 ID; // 0
|
||||
//uint32 Class; // 1
|
||||
//uint32 SubClass; // 2
|
||||
uint32 Unk0; // 3
|
||||
uint32 Class; // 1
|
||||
//uint32 SubClass; // 2 some items have strnage subclasses
|
||||
int32 Unk0; // 3
|
||||
int32 Material; // 4
|
||||
uint32 DisplayId; // 5
|
||||
uint32 InventoryType; // 6
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue