This commit is contained in:
2025-05-20 21:34:52 -05:00
parent 7b92b11696
commit 1bce56231c
11 changed files with 107 additions and 40 deletions

View File

@@ -1,5 +1,5 @@
class_name ItemLine extends HBoxContainer
func setStack(stack:ItemStack) -> void:
$ItemName.text = Item.getName(stack.type, 1)
$ItemName.text = Item.getItemName(stack.type, 1)
$ItemQuantity.text = str(stack.quantity)