From c4fd8113c4d81e0ed722fef927266d61324d5f40 Mon Sep 17 00:00:00 2001 From: Paula Date: Tue, 10 Mar 2026 20:00:05 -0300 Subject: [PATCH] oops chest inventory starts at 0 --- client/gui/gui_chest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/gui/gui_chest.ts b/client/gui/gui_chest.ts index 59c1cd6..3d8b6b2 100644 --- a/client/gui/gui_chest.ts +++ b/client/gui/gui_chest.ts @@ -25,7 +25,7 @@ export class GuiChest extends GuiScreen { this.slots.push( new Slot( this.inventory, - l + i * 9 + 9, + l + i * 9, chest_x + l * SLOT_SIZE, chest_y + i * SLOT_SIZE, ),