From 15a200ef38f8d1355b0122cf329d11359c6e4706 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sun, 8 Feb 2026 11:16:48 -0500 Subject: Don't count the free ending on CC wall --- apworld/client/maps/control_center.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apworld/client') diff --git a/apworld/client/maps/control_center.gd b/apworld/client/maps/control_center.gd index 92999d3..1fecc7b 100644 --- a/apworld/client/maps/control_center.gd +++ b/apworld/client/maps/control_center.gd @@ -79,7 +79,7 @@ func on_map_load(root): var mastery_count = 0 for key in unlocks.data: if unlocks.data[key] == "unlocked": - if key.ends_with("_ending"): + if key.ends_with("_ending") and key != "free_ending": ending_count += 1 elif key.ends_with("_mastery"): mastery_count += 1 -- cgit 1.4.1