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,