Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziktofel committed Jul 28, 2024
1 parent 93348f0 commit 0c8599f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/sc2/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ def _handle_item_name(self, node: JSONMessagePart):
desc = item_descriptions[item_name].replace(". \n", ".<br>").replace(". ", ".<br>").replace("\n", "<br>")
ref = "Item Class: " + ", ".join(item_types) + "<br><br>" + desc
node.setdefault("refs", []).append(ref)
return super()._handle_item_name(node)
return super(KivyJSONtoTextParser, self)._handle_item_name(node)


class SC2Context(CommonContext):
Expand Down

0 comments on commit 0c8599f

Please sign in to comment.