Add non-nil name for itemgroup

This commit is contained in:
Gabriel Tofvesson 2024-10-08 20:05:03 +02:00
parent d16558853c
commit c0f37e1630

View File

@ -33,6 +33,14 @@ function ItemGroup:getDisplayName()
return self:_getIdentityStack():getDisplayName()
end
function ItemGroup:getSimpleName()
return self:isEmpty() and "[EMPTY]" or self:_getIdentityStack():getSimpleName()
end
function ItemGroup:isEmpty()
return self:_getIdentityStack():isEmpty()
end
function ItemGroup:getName()
return self:_getIdentityStack():getName()
end