From 4f7d04985490ea8496ab7b29ecf156d99865272f Mon Sep 17 00:00:00 2001 From: 0/0 Date: Tue, 26 Jan 2021 12:54:58 -0700 Subject: [PATCH] get rid of vote credit bypass for now --- cogs/future_simulations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/future_simulations.py b/cogs/future_simulations.py index 42fbf36..df36028 100644 --- a/cogs/future_simulations.py +++ b/cogs/future_simulations.py @@ -56,7 +56,7 @@ async def country_name(self, ctx: MyContext, country_name: str): async def time(self, ctx: MyContext, delay: int): _ = await ctx.get_translate_function() if delay > 1095: # TODO: actually implement vote credit bypass - await ctx.reply(_("3 years is the upper limit on simulation length. To unlock this, use a vote credit.")) + await ctx.reply(_("3 years is the upper limit on simulation length.")) return db_user: DiscordUser = await get_from_db(ctx.author, as_user=True)