Skip to content
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jaseweston committed Oct 27, 2020
1 parent fe352d9 commit 4f90522
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion light/graph/elements/graph_nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ def __init__(self, node_id, name, props=None, db_id=None):
self.dead = self._props.get("dead")
self.is_player = self._props.get("is_player", False)
self.usually_npc = self._props.get("usually_npc", False)
self.pacifist = self._props.get("pacificist", False)
self.pacifist = self._props.get("pacifist", False)

self.following = None
self.followed_by = {}
Expand Down
2 changes: 1 addition & 1 deletion scripts/examples/simple_world.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"kitty_3_5": {
"agent": true,
"aggression": 0,
"pacificist": true,
"pacifist": true,
"char_type": "creature",
"classes": [
"agent"
Expand Down

0 comments on commit 4f90522

Please sign in to comment.