Fixed a bug in inventories. If no null gap was found endOfListIndex would go to -1.

This commit is contained in:
Filip Maj 2017-09-16 13:57:16 -04:00
parent e581727625
commit 9649d755a9

View File

@ -593,7 +593,8 @@ namespace FFXIVClassic_Map_Server.actors.chara.player
} }
} }
endOfListIndex = lastNullSlot; if (lastNullSlot != -1)
endOfListIndex = lastNullSlot;
} }
#endregion #endregion