mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-08 21:44:35 +02:00
Changed untradeable to itemType (since it's used for bazaar as well).
This commit is contained in:
parent
83fb9badd7
commit
c9116005d6
5 changed files with 38 additions and 8 deletions
|
@ -18,7 +18,7 @@ namespace FFXIVClassic_Map_Server.dataobjects
|
|||
public byte itemType;
|
||||
public byte quality = 1;
|
||||
|
||||
public uint durability = 0;
|
||||
public int durability = 0;
|
||||
public ushort spiritbind = 0;
|
||||
|
||||
public byte materia1 = 0;
|
||||
|
@ -39,7 +39,7 @@ namespace FFXIVClassic_Map_Server.dataobjects
|
|||
itemType = gItem.isExclusive ? (byte)0x3 : (byte)0x0;
|
||||
}
|
||||
|
||||
public InventoryItem(uint uniqueId, uint itemId, int quantity, ushort slot, byte itemType, byte qualityNumber, uint durability, ushort spiritbind, byte materia1, byte materia2, byte materia3, byte materia4, byte materia5)
|
||||
public InventoryItem(uint uniqueId, uint itemId, int quantity, ushort slot, byte itemType, byte qualityNumber, int durability, ushort spiritbind, byte materia1, byte materia2, byte materia3, byte materia4, byte materia5)
|
||||
{
|
||||
this.uniqueId = uniqueId;
|
||||
this.itemId = itemId;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue