diff options
author | 2021-08-10 15:17:30 +0100 | |
---|---|---|
committer | 2021-08-10 15:17:30 +0100 | |
commit | 298f8fc85bf65b9fd52f524b0d61eb99ef7e4687 (patch) | |
tree | 788639c19712ca4743b4b3d4d7c485b4dc9a3c66 /bot | |
parent | Remove unneeded checks in love calculator command (diff) |
Update love calculator error output to be consistent with other role check fails
Co-authored-by: Matteo Bertucci <[email protected]>
Diffstat (limited to 'bot')
-rw-r--r-- | bot/exts/valentines/lovecalculator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/valentines/lovecalculator.py b/bot/exts/valentines/lovecalculator.py index 46bcc6fd..d9b60cfa 100644 --- a/bot/exts/valentines/lovecalculator.py +++ b/bot/exts/valentines/lovecalculator.py @@ -51,7 +51,7 @@ class LoveCalculator(Cog): Lovefest.role_id in [role.id for role in who.roles], Lovefest.role_id in [role.id for role in whom.roles] )): - raise BadArgument("Both members must have the love fest role!") + raise BadArgument("Both members must have the lovefest role!") def normalize(arg: Member) -> Coroutine: # This has to be done manually to be applied to usernames |