From fedcc96e687926c8ac96502791c2475cbbc46695 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sun, 6 Apr 2025 11:33:32 -0400 Subject: Show ProgUseful items as gold --- Archipelago/client.gd | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Archipelago/client.gd') diff --git a/Archipelago/client.gd b/Archipelago/client.gd index e4bd573..2c60f7c 100644 --- a/Archipelago/client.gd +++ b/Archipelago/client.gd @@ -1043,7 +1043,10 @@ func parseHints(hints): func colorForItemType(flags): var int_flags = int(flags) if int_flags & 1: # progression - return "#bc51e0" + if int_flags & 2: # proguseful + return "#f0d200" + else: + return "#bc51e0" elif int_flags & 2: # useful return "#2b67ff" elif int_flags & 4: # trap -- cgit 1.4.1