diff --git a/sizebot/cogs/setbase.py b/sizebot/cogs/setbase.py index 57daebf8..5e5f81f7 100644 --- a/sizebot/cogs/setbase.py +++ b/sizebot/cogs/setbase.py @@ -29,7 +29,6 @@ async def setbaseheight(self, ctx, *, newbaseheight: SV): # Convenience for initial registration if "setbaseheight" in userdata.registration_steps_remaining: - userdata.height = newbaseheight if not (SV.parse("4ft") < newbaseheight < SV.parse("8ft")): await ctx.send(f"{emojis.warning} **WARNING:** Your base height should probably be something more human-scale. This makes comparison math work out much nicer. If this was intended, you can ignore this warning, but it is ***highly recommended*** that you have a base height similar to the size of a normal human being.") @@ -87,7 +86,6 @@ async def setbase(self, ctx, arg1: typing.Union[SV, WV], arg2: typing.Union[SV, completed_registration = False if newbaseheight is not None: if "setbaseheight" in userdata.registration_steps_remaining: - userdata.height = newbaseheight # TODO: Actually have a confirm message here. if not (SV.parse("4ft") <= newbaseheight < SV.parse("8ft")): await ctx.send(f"{emojis.warning} **WARNING:** Your base height should probably be something more human-scale. This makes comparison math work out much nicer. If this was intended, you can ignore this warning, but it is ***highly recommended*** that you have a base height similar to the size of a normal human being.")