From 669c951a81ab530410ce5e6af44162db109fe780 Mon Sep 17 00:00:00 2001 From: Tanner <152333980+Phlegmlee@users.noreply.github.com> Date: Mon, 1 Jul 2024 19:55:15 -0600 Subject: [PATCH] Remove stray word in error message Removed the word "move" from the error statement referring to the action PAUSE. --- addons/fpc/character.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/fpc/character.gd b/addons/fpc/character.gd index 5550a90..e0c5467 100644 --- a/addons/fpc/character.gd +++ b/addons/fpc/character.gd @@ -112,7 +112,7 @@ func check_controls(): # If you add a control, you might want to add a check for push_error("No control mapped for move backward. Please add an input map control. Disabling movement.") immobile = true if !InputMap.has_action(PAUSE): - push_error("No control mapped for move pause. Please add an input map control. Disabling pausing.") + push_error("No control mapped for pause. Please add an input map control. Disabling pausing.") pausing_enabled = false if !InputMap.has_action(CROUCH): push_error("No control mapped for crouch. Please add an input map control. Disabling crouching.")