From bdda76221813efaaea34be83923848e2b10931c3 Mon Sep 17 00:00:00 2001 From: jasio balls Date: Thu, 19 May 2022 15:09:32 +0000 Subject: [PATCH] removed mikus distrohops --- bot.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/bot.py b/bot.py index 6c37bb6..df13086 100644 --- a/bot.py +++ b/bot.py @@ -24,20 +24,6 @@ bot.help_command = PrettyHelp( no_category="Commands", navigation=helpmenu, color=discord.Colour.blurple() ) -@bot.command() -async def distrohop(ctx, *, count=None): - """Count another miku distrohop""" - if os.path.exists("miku_distrohops.txt"): - with open("miku_distrohops.txt", "r") as f: - distrohops = int(f.read()) - else: - distrohops = 0 - if count != None: - distrohops += int(count) - with open("miku_distrohops.txt", "w") as f: - f.write(str(distrohops)) - await ctx.send(embed=infmsg("Distrohops","Miku distrohops: `" + str(distrohops) + "`", "Good lord.")) - @bot.event async def on_ready(): chan = bot.get_channel(842491569176051712)