Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cogs/memes.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ async def freeze(self, ctx: KurisuContext, u: discord.Member):
celsius = random.randint(-300, -4)
fahrenheit = self.c_to_f(celsius)
kelvin = self.c_to_k(celsius)
await self._meme(ctx, f"{u.mention} frozen. User is now {celsius}°C ({fahrenheit}°F, {kelvin}K). Wait how is that possible?", True)
await self._meme(ctx, f"{u.mention} frozen. User is now {celsius}°C ({fahrenheit}°F, {kelvin}K). {'Wait, how is that possible?' if (kelvin < 0) else ''}", True)

# End code from https://github.com/reswitched/robocop-ng

Expand Down