From a2138459de0ef60fa446be9b70310b11aaf78610 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Tue, 22 Aug 2023 12:20:28 -0400 Subject: Only necessary checks are sent out now i.e. the checks for every individual panel are not sent out if you are not playing panelsanity. --- Archipelago/location.gd | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Archipelago/location.gd') diff --git a/Archipelago/location.gd b/Archipelago/location.gd index b85b5c4..7e76427 100644 --- a/Archipelago/location.gd +++ b/Archipelago/location.gd @@ -4,6 +4,7 @@ var ap_name = "" var ap_id = 0 var total = 0 var solved = 0 +var classification = 0 var ran = false @@ -14,4 +15,5 @@ func handle_correct(): ran = true var apclient = global.get_node("Archipelago") - apclient.sendLocation(ap_id) + if classification & apclient._location_classification_bit: + apclient.sendLocation(ap_id) -- cgit 1.4.1