From 4104681bf99dcf3e200f64f1f70a4c960cc22c1b Mon Sep 17 00:00:00 2001 From: cswimr Date: Thu, 7 Nov 2024 19:56:26 -0500 Subject: [PATCH] added an `Echo()` for when `Save()` is called --- Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Program.cs b/Program.cs index ba023e4..d0763e5 100644 --- a/Program.cs +++ b/Program.cs @@ -177,6 +177,7 @@ namespace IngameScript _storageIni.Clear(); _storageIni.Set("AutomaticConnectorActions", "Is_Docked", _isDocked); Storage = _storageIni.ToString(); + Echo($"Docking status set to {_isDocked} and saved to internal storage."); } private void Dock()