|
@@ -65,3 +65,13 @@ class General(commands.Cog):
|
|
|
)
|
|
)
|
|
|
async def status(self, ctx: commands.Context, *, text: str):
|
|
async def status(self, ctx: commands.Context, *, text: str):
|
|
|
await self.bot.change_presence(activity=discord.Game(name=text))
|
|
await self.bot.change_presence(activity=discord.Game(name=text))
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ @commands.command(
|
|
|
|
|
+ description="Modify channel settings",
|
|
|
|
|
+ brief="Set channel specific settings via the webgui",
|
|
|
|
|
+ help="Sends a single-use time based token to the webportal"
|
|
|
|
|
+ )
|
|
|
|
|
+ async def channelsettings(self, ctx: commands.Context, *, text: str):
|
|
|
|
|
+ pass
|
|
|
|
|
+ #await self.bot.change_presence(activity=discord.Game(name=text))
|