diff --git a/strings.py b/strings.py index fcc15555..d1e52bf8 100644 --- a/strings.py +++ b/strings.py @@ -126,6 +126,14 @@ class MATCHMAKING: MATCH_CLOSED = "⚠ Il matchmaking per questa partita è terminato!" +# Dice roller +class ROLL: + SUCCESS = "🎲 {result}" + + class ERRORS: + INVALID_SYNTAX = "⚠ Il tiro dei dadi è fallito. Controlla la sintassi!" + + # Ship creator class SHIP: RESULT = "💕 {one} + {two} = {result}" diff --git a/telegrambot.py b/telegrambot.py index 9526e930..5c578f00 100644 --- a/telegrambot.py +++ b/telegrambot.py @@ -698,9 +698,9 @@ def cmd_roll(bot: telegram.Bot, update: telegram.Update): try: result = dice.roll(f"{dice_string}t") except dice.DiceBaseException: - bot.send_message(update.message.chat.id, "⚠ Il tiro dei dadi è fallito. Controlla la sintassi!") + reply(bot, update, strings.ROLL.ERRORS.INVALID_SYNTAX) return - bot.send_message(update.message.chat.id, f"🎲 {result}") + reply(bot, update, strings.ROLL.SUCCESS, result=result) @command