if player inputs command with caps, it recognises this and returns them

This commit is contained in:
Brazly
2026-01-16 04:02:50 +00:00
parent edc545bef9
commit 1b8896b860

View File

@@ -60,7 +60,7 @@ func EnterCommand() -> void:
if historyContainer.get_child_count() <22:
CreateHistoryEntry(fullText)
var parts = userInput.split(" ")
var parts = userInput.to_lower().split(" ")
match parts[0]:
"ls", "list":