♻️ removed Print statements
This commit is contained in:
@@ -65,7 +65,6 @@ public partial class MVPDuck : Node2D, ISaveable
|
||||
};
|
||||
|
||||
string id = GetMeta("SaveID").AsString();
|
||||
GD.Print($"Updating Save ID for object {Name}: {id}");
|
||||
SavegameService.AppendDataToSave( id, payloadData);
|
||||
}
|
||||
|
||||
@@ -75,7 +74,6 @@ public partial class MVPDuck : Node2D, ISaveable
|
||||
public void LoadFromSaveData()
|
||||
{
|
||||
string id = GetMeta("SaveID").AsString();
|
||||
GD.Print($"Loading Save ID for object {Name}: " + id);
|
||||
|
||||
Dictionary<string, Variant> save = SavegameService.GetSaveData(id);
|
||||
if (save.Count > 0)
|
||||
|
||||
Reference in New Issue
Block a user