diff --git a/trainerdex/discord_bot/modules/mod.py b/trainerdex/discord_bot/modules/mod.py index 7552d50..c38658d 100644 --- a/trainerdex/discord_bot/modules/mod.py +++ b/trainerdex/discord_bot/modules/mod.py @@ -54,8 +54,7 @@ async def allowed_to_assign_roles(self, ctx: ApplicationContext) -> bool: return bool(ctx.author.guild_permissions.manage_roles) def allowed_to_create_profiles(self) -> bool: - # return datetime.utcnow() < SHUTDOWN_DATE - return True + return datetime.utcnow() < SHUTDOWN_DATE def compare_stats(self, x: Update, y: Mapping[str, int | Decimal | None], /) -> bool: x_, y_ = vars(x), deepcopy(y)