mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-28 23:51:09 -04:00
Fix "comparison between signed and unsigned integer expressions"
This commit is contained in:
parent
ab238e07c4
commit
561a88d441
@ -26,7 +26,7 @@ void PacketInventory::Packet(RakNet::BitStream *bs, BasePlayer *player, bool sen
|
||||
|
||||
RW(player->inventory.count, send);
|
||||
|
||||
for (int i = 0; i < player->inventory.count; i++)
|
||||
for (unsigned int i = 0; i < player->inventory.count; i++)
|
||||
{
|
||||
Item item;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user