Skip to content

Commit

Permalink
Fix merge (#46)
Browse files Browse the repository at this point in the history
* Fix Merge
  • Loading branch information
JeanAEckelberg authored May 27, 2023
1 parent 812176f commit 90ca0d2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 1 addition & 4 deletions game/controllers/master_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,7 @@ def turn_logic(self, clients: list[Player], turn):
self.movement_controller.handle_actions(client.actions[i], client, self.current_world_data["game_board"])
except IndexError:
pass
try:
self.interact_controller.handle_actions(client.actions[i], client, self.current_world_data["game_board"])
except IndexError:
pass

# checks event logic at the end of round
# self.handle_events(clients)

Expand Down
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
tqdm~=4.65.0
pygame~=2.3.0
numpy~=1.24.2
Pillow~=9.5.0

0 comments on commit 90ca0d2

Please sign in to comment.