use join
This commit is contained in:
parent
378405a207
commit
16db9ec009
|
@ -294,7 +294,7 @@ class one_night:
|
|||
raise ValueError("Invalid number of roles: " + str(len(self.role_list)) + " with " + str(len(self.player_list)) + " players")
|
||||
|
||||
# send confirmation
|
||||
await self.send("Roles: " + str([r.name() for r in self.role_list]))
|
||||
await self.send("Roles: " + ", ".join(r.name() for r in self.role_list))
|
||||
|
||||
|
||||
def distribute_roles(self):
|
||||
|
|
Loading…
Reference in New Issue