diff --git a/scripts/item/itemStacks/PacksackStack.cs b/scripts/item/itemStacks/PacksackStack.cs index a70a22e..0e78007 100644 --- a/scripts/item/itemStacks/PacksackStack.cs +++ b/scripts/item/itemStacks/PacksackStack.cs @@ -45,7 +45,7 @@ public class PacksackStack(Packsack packsack) : IItemStack public IItem? GetItem() { - return Empty ? packsack : null; + return Empty ? null : packsack; } public IItem? PickItem()