diff --git a/backend/game.py b/backend/game.py
index bb5e9b1..dc63251 100644
--- a/backend/game.py
+++ b/backend/game.py
@@ -242,6 +242,7 @@ class Game:
'is_sheriff': isinstance(p.role, roles.Sheriff),
'is_my_turn': p.is_my_turn,
'pending_action': p.pending_action,
+ 'character': p.character.__dict__
} for p in self.players]
self.sio.emit('players_update', room=self.name, data=data)
diff --git a/backend/roles.py b/backend/roles.py
index 4f44ea0..c5378c4 100644
--- a/backend/roles.py
+++ b/backend/roles.py
@@ -6,7 +6,8 @@ class Role(ABC):
self.name = name
self.goal = goal
self.health_mod = health_mod
-
+ self.alt_goal = ''
+
@abstractmethod
def on_player_death(self, alive_players: list, initial_players: int):
pass
diff --git a/frontend/src/components/Lobby.vue b/frontend/src/components/Lobby.vue
index 495751e..0550196 100644
--- a/frontend/src/components/Lobby.vue
+++ b/frontend/src/components/Lobby.vue
@@ -12,8 +12,9 @@
💀