Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove yelling exemptor from mcwhitelist #191

Merged
merged 1 commit into from
Jan 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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