Skip to content

Commit

Permalink
LNX-178 Add printing only for user who created agent
Browse files Browse the repository at this point in the history
  • Loading branch information
EasyJB committed Aug 15, 2023
1 parent 1784390 commit 891519a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions lynx/common/actions/error_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ class ErrorLog(Action):
Simple action for logging errors during runtime
"""
text: str = ""
user_id: str = ""

def satisfies_requirements(self, scene: 'Scene') -> bool:
return True
Expand Down
1 change: 1 addition & 0 deletions lynx/common/actions/print.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ class Print(Action):
Simple action for printing player's message
"""
text: str = ""
user_id: str = ""

def satisfies_requirements(self, scene: 'Scene') -> bool:
return True
Expand Down

0 comments on commit 891519a

Please sign in to comment.