mirror of
https://github.com/RYGhub/royal-mifia.git
synced 2024-11-22 05:44:19 +00:00
Fatto! (closes #64)
This commit is contained in:
parent
16f183b52d
commit
5272d53081
1 changed files with 6 additions and 0 deletions
6
main.py
6
main.py
|
@ -53,6 +53,12 @@ class Player:
|
|||
"""Uccidi il giocatore."""
|
||||
self.role.ondeath()
|
||||
self.alive = False
|
||||
# Silenzia il giocatore
|
||||
if self is not self.game.admin:
|
||||
try:
|
||||
self.game.bot.restrictChatMember(self.game.groupid, self.tid, None, False, False, False, False)
|
||||
except Unauthorized:
|
||||
print("Bot is not administrator in group {}".format(self.groupid))
|
||||
|
||||
|
||||
class Game:
|
||||
|
|
Loading…
Reference in a new issue