From bad85564b10efe2b7ebcb76b32bdceb6adadd274 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 11 Oct 2024 23:15:47 +0200 Subject: [PATCH] Add damage getters to ItemGroup --- storage/itemgroup.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/storage/itemgroup.lua b/storage/itemgroup.lua index 6982d7f..c7156e1 100644 --- a/storage/itemgroup.lua +++ b/storage/itemgroup.lua @@ -53,6 +53,14 @@ function ItemGroup:getNBT() return self:_getIdentityStack():getNBT() end +function ItemGroup:getDamage() + return self:_getIdentityStack():getDamage() +end + +function ItemGroup:getMaxDamage() + return self:_getIdentityStack():getMaxDamage() +end + function ItemGroup:_getIdentityStack() return self[1] end