This commit is contained in:
Adrien Ufferte
2025-10-23 13:45:02 +02:00
parent c6291ac451
commit 43d56bfefb
+3 -2
View File
@@ -42,8 +42,9 @@ func init_unlocks() -> void:
}
# Make sure that the first garden is always accessible
if unlocks[1]["look_and_learn"] == Status.Locked:
unlocks[1]["look_and_learn"] = Status.Unlocked
if unlocks.has(1):
if unlocks[1]["look_and_learn"] == Status.Locked:
unlocks[1]["look_and_learn"] = Status.Unlocked
func ensure_data_integrity(data: Dictionary[int, Dictionary]) -> Dictionary: