From 3a131195f11c6a1fc67b66a0a978879e1581b086 Mon Sep 17 00:00:00 2001 From: qwint Date: Mon, 7 Oct 2024 10:00:16 -0500 Subject: [PATCH] make hints tab in logic label orange --- worlds/tracker/TrackerClient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/tracker/TrackerClient.py b/worlds/tracker/TrackerClient.py index 26b375754db0..76461672dded 100644 --- a/worlds/tracker/TrackerClient.py +++ b/worlds/tracker/TrackerClient.py @@ -385,7 +385,7 @@ def update_available_hints(log: HintLog, hints: typing.Set[typing.Dict[str, typi if hint["entrance"] else "Vanilla"})}, "found": { "text": log.parser.handle_node({"type": "color", "color": "green" if hint["found"] else - "yellow" if in_logic else "red", + "orange" if in_logic else "red", "text": "Found" if hint["found"] else "In Logic" if in_logic else "Not Found"})}, })