From c604e9102198d62323739191d43c27a348ec4d69 Mon Sep 17 00:00:00 2001 From: HumanoidSandvichDispenser Date: Sat, 23 Dec 2023 22:36:09 -0800 Subject: [PATCH] return to original position by default --- State/Thinker/IdleState.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/State/Thinker/IdleState.cs b/State/Thinker/IdleState.cs index 6c15a95..12ca7f7 100644 --- a/State/Thinker/IdleState.cs +++ b/State/Thinker/IdleState.cs @@ -20,7 +20,7 @@ public partial class IdleState : ThinkerState [ExportGroup("Returning")] [Export] - public bool ShouldReturnToOriginalPosition { get; set; } + public bool ShouldReturnToOriginalPosition { get; set; } = true; [Export] public NavigationAgent2D NavigationAgent { get; set; }