about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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