CommonClient: make entrances blue in console

This commit is contained in:
Fabian Dill
2021-08-07 05:40:18 +02:00
parent f1bef73757
commit a7bb6f6a95

View File

@@ -244,7 +244,7 @@ class JSONtoTextParser(metaclass=HandlerMeta):
return self._handle_item_name(node) return self._handle_item_name(node)
def _handle_entrance_name(self, node: JSONMessagePart): def _handle_entrance_name(self, node: JSONMessagePart):
node["color"] = 'white_bg;black' node["color"] = 'blue'
return self._handle_color(node) return self._handle_color(node)