FFA Changed

This commit is contained in:
Luis 2025-02-16 19:19:24 -05:00
parent c06ac3db31
commit f681eb1994
4 changed files with 19 additions and 9 deletions

View file

@ -311,17 +311,17 @@ def night_mode() -> None:
def kick_vote_started(started_by: str, started_to: str) -> None:
"""Logs the kick vote."""
logger.log(f"{started_by} started kick vote for {started_to}.")
logger.log(f"{started_by} inició votación para expulsar a {started_to}.")
def on_kicked(account_id: str) -> None:
"""Runs when someone is kicked by kickvote."""
logger.log(f"{account_id} kicked by kickvotes.")
logger.log(f"{account_id} expulsado por kickvotes.")
def on_kick_vote_end():
"""Runs when kickvote is ended."""
logger.log("Kick vote End")
logger.log("Votación para expulsar finalizada.")
def on_join_request(ip):