From 1b8896b860a5e09fb0195c59ae9e5c4d62a8a580 Mon Sep 17 00:00:00 2001 From: Brazly Date: Fri, 16 Jan 2026 04:02:50 +0000 Subject: [PATCH] if player inputs command with caps, it recognises this and returns them --- Assets/Scripts/UI/terminal/terminal_controls.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/UI/terminal/terminal_controls.gd b/Assets/Scripts/UI/terminal/terminal_controls.gd index 4866d55..ade0eb2 100644 --- a/Assets/Scripts/UI/terminal/terminal_controls.gd +++ b/Assets/Scripts/UI/terminal/terminal_controls.gd @@ -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":