diff options
Diffstat (limited to 'bot/seasons')
| -rw-r--r-- | bot/seasons/valentines/lovecalculator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/valentines/lovecalculator.py b/bot/seasons/valentines/lovecalculator.py index 9342f0fa..b995aef4 100644 --- a/bot/seasons/valentines/lovecalculator.py +++ b/bot/seasons/valentines/lovecalculator.py @@ -47,7 +47,7 @@ class LoveCalculator: staff = ctx.guild.get_role(Roles.helpers).members name_two = choice(staff) - love_meter = (name_one.id + name_two.id) % 100 + love_meter = (name_one.id + name_two.id) % 101 love_idx = str(sorted(x for x in LOVE_LEVELS if x <= love_meter)[-1]) love_status = choice(LOVE_DATA[love_idx]["titles"]) |