From ca81afd5fcb016b9c3c64b5a808f19899b369430 Mon Sep 17 00:00:00 2001 From: DigiDuncan Date: Sat, 2 Dec 2023 20:55:39 -0500 Subject: [PATCH] oops --- sizebot/cogs/quake.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sizebot/cogs/quake.py b/sizebot/cogs/quake.py index da5c1b1a..cd2b8f0f 100644 --- a/sizebot/cogs/quake.py +++ b/sizebot/cogs/quake.py @@ -11,8 +11,8 @@ from sizebot.lib.userdb import load_or_fake from sizebot.lib.errors import UserMessedUpException -EARTH_RAD = 10_018_570 -UNI_RAD = 4.4E26 +EARTH_RAD = Decimal(10_018_570) +UNI_RAD = Decimal(4.4E26) QuakeType = typing.Literal["step", "stomp", "jump", "poke", "breath", "breathe"] class QuakeCog(commands.Cog):