From aedc3773d1ff5628be88d1ec029a0f44e3e24dbe Mon Sep 17 00:00:00 2001 From: Balloonpopper Date: Sat, 10 Sep 2022 10:31:04 +1000 Subject: [PATCH] fix: walk error message missing a parameter --- addons/escoria-core/game/core-scripts/esc/commands/walk.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/escoria-core/game/core-scripts/esc/commands/walk.gd b/addons/escoria-core/game/core-scripts/esc/commands/walk.gd index b243f074..a75eb1fa 100644 --- a/addons/escoria-core/game/core-scripts/esc/commands/walk.gd +++ b/addons/escoria-core/game/core-scripts/esc/commands/walk.gd @@ -47,7 +47,7 @@ func validate(arguments: Array): if not escoria.object_manager.has(arguments[1]): escoria.logger.error( self, - ": invalid second object. The object to walk to with global id %s was not found." + "[%s]: invalid second object. The object to walk to with global id %s was not found." % [get_command_name(), arguments[1]] ) return false