From 96ebcf29bb912f450f5d09b7ad5caeb900748638 Mon Sep 17 00:00:00 2001 From: Goodlyay Date: Thu, 27 Jun 2024 15:04:19 -0700 Subject: [PATCH] Remove /rq as an alias for /ragequit As this shortcut doesn't describe the command and is commonly used to troll new players. Server owners can add an alias for the command if they still wish to allow /rq --- MCGalaxy/Commands/other/QuitCmds.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/MCGalaxy/Commands/other/QuitCmds.cs b/MCGalaxy/Commands/other/QuitCmds.cs index 257ad70da..1dc0475d9 100644 --- a/MCGalaxy/Commands/other/QuitCmds.cs +++ b/MCGalaxy/Commands/other/QuitCmds.cs @@ -24,7 +24,6 @@ namespace MCGalaxy.Commands.Misc public sealed class CmdRagequit : Command2 { public override string name { get { return "RageQuit"; } } - public override string shortcut { get { return "rq"; } } public override string type { get { return CommandTypes.Other; } } public override bool MessageBlockRestricted { get { return true; } } public override bool SuperUseable { get { return false; } }