Skip to content

Commit

Permalink
misc: Check for incorrect Sayari Plushies govt
Browse files Browse the repository at this point in the history
  • Loading branch information
a-random-lemurian committed Nov 1, 2024
1 parent 952eb95 commit b5db0c9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions script/check_governments.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ def check_node(node: ep.Node):
return
if node.government() is None:
print(f"No government in system {node.name()}")
else:
if node.government() == "Sayari Plushies":
print(f"Government in system {node.name()} uses `Sayari Plushies`, that is the display name. The actual name is `Sayari Plushie`.")

def main(args):
with open(args.file, "r") as f:
Expand Down

0 comments on commit b5db0c9

Please sign in to comment.