1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

Make treasures case insensitive

This commit is contained in:
Steffo 2020-05-24 11:36:10 +02:00
parent 49befa61bd
commit f3b4d674e5
Signed by: steffo
GPG key ID: 896A80F55F7C97F0
3 changed files with 3 additions and 4 deletions

View file

@ -36,7 +36,7 @@ class MagicktreasureCommand(rc.Command):
await data.delete_invoking()
author = await data.get_author(error_if_none=True)
code = args[0]
code = args[0].lower()
try:
value = int(args[1])
except ValueError:

View file

@ -14,7 +14,7 @@ class TreasureCommand(rc.Command):
async def run(self, args: rc.CommandArgs, data: rc.CommandData) -> None:
author = await data.get_author(error_if_none=True)
code = args[0]
code = args[0].lower()
TreasureT = self.alchemy.get(Treasure)

View file

@ -73,8 +73,7 @@ class FiorygiTransaction:
if qty > 0:
msg = f"💰 [b]{user_str}[/b] ha ottenuto [b]{qty}[/b] fioryg{'i' if qty != 1 else ''} per [i]{reason}[/i]!"
elif qty == 0:
msg = f"❓ [b]{user_str}[/b] ha ottenuto [b]{qty}[/b] fioryg{'i' if qty != 1 else ''}...? " \
f"Per [i]{reason}[/i]...? Cosa?"
msg = f"❓ [b]{user_str}[/b] ha mantenuto i suoi fiorygi attuali per [i]{reason}[/i].\nWait, cosa?"
else:
msg = f"💸 [b]{user_str}[/b] ha perso [b]{-qty}[/b] fioryg{'i' if qty != -1 else ''} per [i]{reason}[/i]."