From a3efb31e44d8e07eac922c04f301f165e3ebd69c Mon Sep 17 00:00:00 2001 From: shadowinged Date: Sat, 22 Mar 2025 20:02:46 -0400 Subject: [PATCH] forgot to let hoster set a status --- bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot.py b/bot.py index 9f63fee..1364359 100644 --- a/bot.py +++ b/bot.py @@ -304,14 +304,14 @@ async def statusy(ctx): await ctx.send(f"WiiMart Status: {url_status}\nAdmin Status: {status}") @bot.hybrid_command(name="setstatus",description="Sets the current server status to your liking") -@commands.has_any_role("Owner", "Admin", "Moderators") +@commands.has_any_role("Owner", "Admin", "Moderators", "Hoster") async def setstatus(ctx, stat: str): global status status = stat await ctx.send(f"Status has been set to: {status}") @bot.hybrid_command(name="unsetstatus", description="Unsets the current status") -@commands.has_any_role("Owner", "Admin", "Moderators") +@commands.has_any_role("Owner", "Admin", "Moderators", "Hoster") async def unset(ctx): global status status = "Not Set"