diff --git a/main.py b/main.py index 04b49f7..a2adb4d 100644 --- a/main.py +++ b/main.py @@ -60,13 +60,7 @@ class Game: Assign a random role to each player. Accepts optional lists (returned by load_lists). If lists are not supplied, it will attempt to read files itself. """ - if player_names is None or roles_list is None: - loaded = self.load_lists() - if not loaded: - return - player_names = loaded["players"] - roles_list = loaded["roles"] - + if not player_names: log.info("Players are not initialized") return