diff --git a/src/dev-util/savegame.gd b/src/dev-util/savegame.gd index 121459c..9946fc6 100644 --- a/src/dev-util/savegame.gd +++ b/src/dev-util/savegame.gd @@ -221,7 +221,8 @@ 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(): - if not (sticky is int or sticky is Vector2 or board_state.cards.keys().has(sticky)): + 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 return true