From 595da4f179b9a317d2e4dd3779c4bf9fbf67d220 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 4 Oct 2024 00:40:16 +0200 Subject: [PATCH] Expose chest inventory --- storage/chest.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/storage/chest.lua b/storage/chest.lua index 43b0051..ad2942d 100644 --- a/storage/chest.lua +++ b/storage/chest.lua @@ -160,6 +160,10 @@ function Chest:getName() return self.name end +function Chest:getInventory() + return self.chest +end + function Chest:find(query) local result = {}