mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-27 13:34:28 +00:00
Move /roll to strings
This commit is contained in:
parent
944371b32d
commit
c9069a5221
2 changed files with 10 additions and 2 deletions
|
@ -126,6 +126,14 @@ class MATCHMAKING:
|
||||||
MATCH_CLOSED = "⚠ Il matchmaking per questa partita è terminato!"
|
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
|
# Ship creator
|
||||||
class SHIP:
|
class SHIP:
|
||||||
RESULT = "💕 {one} + {two} = <b>{result}</b>"
|
RESULT = "💕 {one} + {two} = <b>{result}</b>"
|
||||||
|
|
|
@ -698,9 +698,9 @@ def cmd_roll(bot: telegram.Bot, update: telegram.Update):
|
||||||
try:
|
try:
|
||||||
result = dice.roll(f"{dice_string}t")
|
result = dice.roll(f"{dice_string}t")
|
||||||
except dice.DiceBaseException:
|
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
|
return
|
||||||
bot.send_message(update.message.chat.id, f"🎲 {result}")
|
reply(bot, update, strings.ROLL.SUCCESS, result=result)
|
||||||
|
|
||||||
|
|
||||||
@command
|
@command
|
||||||
|
|
Loading…
Reference in a new issue