From cc6af26a8c0c01538f7220ba2e62ada136fff386 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 25 Sep 2025 23:34:51 -0400 Subject: Fix item colors in game textclient --- apworld/context.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'apworld/context.py') diff --git a/apworld/context.py b/apworld/context.py index 2294491..05f75a3 100644 --- a/apworld/context.py +++ b/apworld/context.py @@ -167,7 +167,8 @@ class Lingo2ClientContext(CommonContext): elif message_part["type"] == "item_id": parts.append({ "type": "item", - "text": self.item_names.lookup_in_slot(int(message_part["text"]), message_part["player"]) + "text": self.item_names.lookup_in_slot(int(message_part["text"]), message_part["player"]), + "flags": message_part["flags"], }) elif message_part["type"] == "location_id": parts.append({ -- cgit 1.4.1