mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
Fixed bug where new characters would not have items equipped. This was due to the slotId was being saved, not the unique itemId.
This commit is contained in:
parent
1417a0d841
commit
67fed3dba5
@ -117,7 +117,7 @@ namespace FFXIVClassic_Map_Server.actors.chara.player
|
||||
if (item == null)
|
||||
continue;
|
||||
|
||||
Database.equipItem(owner, slots[i], itemSlots[i]);
|
||||
Database.equipItem(owner, slots[i], item.uniqueId);
|
||||
list[slots[i]] = normalInventory.getItemBySlot(itemSlots[i]);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user