forked from gooberinc/goober
38 lines
1.1 KiB
Python
38 lines
1.1 KiB
Python
import discord
|
|
from discord.ext import commands
|
|
from modules.globalvars import RED, GREEN, RESET, LOCAL_VERSION_FILE
|
|
import os
|
|
|
|
from modules.permission import requires_admin
|
|
|
|
|
|
class songchange(commands.Cog):
|
|
def __init__(self, bot):
|
|
self.bot = bot
|
|
|
|
def get_local_version():
|
|
if os.path.exists(LOCAL_VERSION_FILE):
|
|
with open(LOCAL_VERSION_FILE, "r") as f:
|
|
return f.read().strip()
|
|
return "0.0.0"
|
|
|
|
global local_version
|
|
local_version = get_local_version()
|
|
|
|
@requires_admin()
|
|
@commands.command()
|
|
async def changesong(self, ctx, song: str):
|
|
await ctx.send(f"Changed song to {song}")
|
|
try:
|
|
await self.bot.change_presence(
|
|
activity=discord.Activity(
|
|
type=discord.ActivityType.listening, name=f"{song}"
|
|
)
|
|
)
|
|
print(f"{GREEN}Changed song to {song}{RESET}")
|
|
except Exception as e:
|
|
print(f"{RED}An error occurred while changing songs..: {str(e)}{RESET}")
|
|
|
|
|
|
async def setup(bot):
|
|
await bot.add_cog(songchange(bot))
|