diff --git a/Horse Isle Server/HorseIsleServer/Game/Inventory/PlayerInventory.cs b/Horse Isle Server/HorseIsleServer/Game/Inventory/PlayerInventory.cs index aae4b55..d9373ab 100755 --- a/Horse Isle Server/HorseIsleServer/Game/Inventory/PlayerInventory.cs +++ b/Horse Isle Server/HorseIsleServer/Game/Inventory/PlayerInventory.cs @@ -161,10 +161,10 @@ namespace HISP.Game.Inventory { throw new InventoryMaxStackException(); } - else if (Count >= Messages.DefaultInventoryMax) - { - throw new InventoryFullException(); - } + } + else if (Count >= Messages.DefaultInventoryMax) + { + throw new InventoryFullException(); }