Remove debug markers.

This commit is contained in:
Sydney 2020-12-04 17:18:53 -05:00
parent 75be5926d1
commit 709efc1e29
No known key found for this signature in database
GPG key ID: 6E62B942078EC9A2

View file

@ -368,7 +368,6 @@ class Shootout(commands.Cog):
**THIS COMMAND CLEARS SESSION FOR THIS CHANNELS. DO NOT USE WHILE A GAME IS IN SESSION, OR IT WILL BE DESTROYED.**
"""
await self.clear_session(ctx)
await ctx.send("I cleared data for this channel.")
await ctx.tick()
return
@ -378,13 +377,8 @@ class Shootout(commands.Cog):
**THIS COMMAND CLEARS ALL SESSION FOR ALL CHANNELS DATA. DO NOT USE WHILE GAMES ARE IN SESSION, OR THEY WILL BE DESTROYED.**
"""
await self.config.guild(ctx.guild).Sessions.clear()
await ctx.send("I cleared data for all sessions.")
await ctx.tick()
@soset_admin.command(name="test")
async def soset_admin_test(self, ctx):
return await ctx.send(await self.get_session_from_context(ctx))
@soset_admin.command(name="dump")
async def soset_admin_dump(self, ctx):
"""Dumps the entire config for this guild."""