diff --git a/strings.py b/strings.py index 79ebaf38..b84d25fd 100644 --- a/strings.py +++ b/strings.py @@ -80,8 +80,7 @@ class MATCHMAKING: TICKER_TEXT = { "match_ready": "πŸ”΅ Hai detto che sei pronto per giocare!", "match_wait_for_me": "πŸ•’ Hai chiesto agli altri di aspettarti.", - "match_maybe": "❔ Hai detto che forse ci sarai.", - "match_someone_else": "πŸ’¬ Hai detto che vuoi aspettare che venga qualcun altro.", + "match_maybe": "❓ Hai detto che forse ci sarai.", "match_ignore": "❌ Non hai intenzione di partecipare.", "match_close": "🚩 Hai notificato tutti che la partita sta iniziando.", "match_cancel": "πŸ—‘ Hai annullato la partita." @@ -90,15 +89,13 @@ class MATCHMAKING: GAME_START = { MatchmakingStatus.READY: "πŸ”΅ Che {match_title} abbia inizio!", MatchmakingStatus.WAIT_FOR_ME: "πŸ•’ Sbrigati! {match_title} sta per iniziare!", - MatchmakingStatus.SOMEONE_ELSE: "❔ {match_title} sta iniziando. Se vuoi partecipare, fai in fretta!", - MatchmakingStatus.MAYBE: "πŸ’¬ {match_title} sta per iniziare, e ci sono {active_players} giocatori." + MatchmakingStatus.MAYBE: "❓ {match_title} sta iniziando. Se vuoi partecipare, fai in fretta!", } BUTTONS = { "match_ready": "πŸ”΅ Sono pronto per iniziare!", "match_wait_for_me": "πŸ•’ Ci sarΓ², aspettatemi!", - "match_maybe": "❔ Forse vengo, se non ci sono fate senza di me.", - "match_someone_else": "πŸ’¬ Solo se viene anche qualcun altro...", + "match_maybe": "❓ Forse vengo, se non ci sono fate senza di me.", "match_ignore": "❌ Non ci sarΓ².", "match_close": "🚩 ADMIN: Avvia la partita", "match_cancel": "πŸ—‘ ADMIN: Annulla la partita" diff --git a/telegrambot.py b/telegrambot.py index bfff6789..85d3adf8 100644 --- a/telegrambot.py +++ b/telegrambot.py @@ -478,7 +478,6 @@ def on_callback_query(bot: telegram.Bot, update: telegram.Update): status = { "match_ready": db.MatchmakingStatus.READY, "match_wait_for_me": db.MatchmakingStatus.WAIT_FOR_ME, - "match_someone_else": db.MatchmakingStatus.SOMEONE_ELSE, "match_maybe": db.MatchmakingStatus.MAYBE, "match_ignore": db.MatchmakingStatus.IGNORED, "match_close": None,