From 845fc1d84d33f9661c63b7b1f59bcdea7fd79ccc Mon Sep 17 00:00:00 2001 From: Tiger Jove Date: Sat, 13 Dec 2025 13:16:51 +0100 Subject: [PATCH] chore: remove extraneous debug --- src/dev-util/savegame.gd | 1 - 1 file changed, 1 deletion(-) diff --git a/src/dev-util/savegame.gd b/src/dev-util/savegame.gd index 9946fc6..b1181fa 100644 --- a/src/dev-util/savegame.gd +++ b/src/dev-util/savegame.gd @@ -221,7 +221,6 @@ func validate_board_state() -> bool: push_error("Save %s could not be parsed: Corrupted Cards." % unique_save_name) return false for sticky in board_state.stickies.values(): - print("Sticky:", sticky) if not (sticky is int or sticky is Vector2 or sticky is float or board_state.cards.keys().has(sticky)): push_error("Save %s could not be parsed: Corrupted Sticky Notes.") return false