diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-04-06 11:33:32 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-04-06 11:33:32 -0400 |
commit | fedcc96e687926c8ac96502791c2475cbbc46695 (patch) | |
tree | c180da0070392a4fcb1df030b35e2e15f8d44a2f /Archipelago | |
parent | dfcf941908881dc15091cc0a68eea82f979c65e4 (diff) | |
download | lingo-archipelago-main.tar.gz lingo-archipelago-main.tar.bz2 lingo-archipelago-main.zip |
Diffstat (limited to 'Archipelago')
-rw-r--r-- | Archipelago/client.gd | 5 |
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): | |||
1043 | func colorForItemType(flags): | 1043 | func 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 |