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

@@ -18,9 +18,9 @@ func start() -> void:
var text:String = "";
match getType:
GetType.FOUND:
text = "Found " + str(quantity) + " " + Item.getName(itemType, quantity) + ".";
text = "Found " + str(quantity) + " " + Item.getItemName(itemType, quantity) + ".";
GetType.GIVEN:
text = "Received " + str(quantity) + " " + Item.getName(itemType, quantity) + ".";
text = "Received " + str(quantity) + " " + Item.getItemName(itemType, quantity) + ".";
_:
pass
VN.getTextbox().setText(text);