♻️ removed Print statements

This commit is contained in:
2025-11-25 17:20:58 +01:00
parent f37f7c7ceb
commit 75e4bdd7fd
5 changed files with 0 additions and 14 deletions
@@ -60,7 +60,6 @@ public static class SavegameService
if (!_loaded)
{
GD.Print("SavegameService: SaveFile not loaded.");
return saveData;
}
@@ -80,12 +79,9 @@ public static class SavegameService
public static void Save()
{
string json = Json.Stringify(SaveDatas, indent: "\t");
GD.Print(SavePath);
// create cloud directory
CreateSaveDirectory();
GD.Print("Save.");
try
{
@@ -108,7 +104,6 @@ public static class SavegameService
/// </summary>
public static void Load()
{
GD.Print("Load.");
try
{
if (!System.IO.File.Exists(SavePath))