From c37ce282bc037dea21b179f31e382e1c81c64ae6 Mon Sep 17 00:00:00 2001 From: Apollo Nargang Date: Mon, 30 Sep 2024 20:22:20 -0400 Subject: [PATCH] Replace the `#` in the command line with a diamond --- scenes/elements/command_line/command_line.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scenes/elements/command_line/command_line.gd b/scenes/elements/command_line/command_line.gd index 0787381..8ddd7d4 100644 --- a/scenes/elements/command_line/command_line.gd +++ b/scenes/elements/command_line/command_line.gd @@ -16,4 +16,4 @@ func _ready() -> void: func _on_osc_feedback(value: Array): - text = value[0] + text = str(value[0]).replace("#", "♦")