about summary refs log tree commit diff stats
path: root/Archipelago
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-04-06 11:33:32 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-04-06 11:33:32 -0400
commitfedcc96e687926c8ac96502791c2475cbbc46695 (patch)
treec180da0070392a4fcb1df030b35e2e15f8d44a2f /Archipelago
parentdfcf941908881dc15091cc0a68eea82f979c65e4 (diff)
downloadlingo-archipelago-main.tar.gz
lingo-archipelago-main.tar.bz2
lingo-archipelago-main.zip
Show ProgUseful items as gold HEAD main
Diffstat (limited to 'Archipelago')
-rw-r--r--Archipelago/client.gd5
1 files changed, 4 insertions, 1 deletions
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):
1043func colorForItemType(flags): 1043func colorForItemType(flags):
1044 var int_flags = int(flags) 1044 var int_flags = int(flags)
1045 if int_flags & 1: # progression 1045 if int_flags & 1: # progression
1046 return "#bc51e0" 1046 if int_flags & 2: # proguseful
1047 return "#f0d200"
1048 else:
1049 return "#bc51e0"
1047 elif int_flags & 2: # useful 1050 elif int_flags & 2: # useful
1048 return "#2b67ff" 1051 return "#2b67ff"
1049 elif int_flags & 4: # trap 1052 elif int_flags & 4: # trap