Skip to content

Commit

Permalink
remove yelling exemptor from mcwhitelist
Browse files Browse the repository at this point in the history
this causes a timeout (?) when whitelisting, sometimes. idk why.

It's pointless to have the exemptor on this command anyway, because capitalising a minecraft username will probably cause it to stop working.
  • Loading branch information
andrewj-brown authored Jan 8, 2024
1 parent a5dd798 commit c2cb879
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions uqcsbot/minecraft.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
from uqcsbot.bot import UQCSBot
from uqcsbot.models import MCWhitelist
from uqcsbot.utils.err_log_utils import FatalErrorWithLog
from uqcsbot.yelling import yelling_exemptor

RCON_ADDRESS = os.environ.get("MC_RCON_ADDRESS")
RCON_PORT = os.environ.get("MC_RCON_PORT")
Expand Down Expand Up @@ -75,7 +74,6 @@ async def mcplayers(self, interaction: discord.Interaction):

@app_commands.command()
@app_commands.describe(username="Minecraft username to whitelist.")
@yelling_exemptor(input_args=["username"])
async def mcwhitelist(self, interaction: discord.Interaction, username: str):
"""Adds a username to the whitelist for the UQCS server."""
db_session = self.bot.create_db_session()
Expand Down

0 comments on commit c2cb879

Please sign in to comment.