diff --git a/MCGalaxy/Commands/Information/CmdRules.cs b/MCGalaxy/Commands/Information/CmdRules.cs index 2827195a3..138a476de 100644 --- a/MCGalaxy/Commands/Information/CmdRules.cs +++ b/MCGalaxy/Commands/Information/CmdRules.cs @@ -30,6 +30,7 @@ namespace MCGalaxy.Commands.Info public override CommandAlias[] Aliases { get { return new[] { new CommandAlias("Agree", "agree"), new CommandAlias("Disagree", "disagree") }; } } + public override bool UseableWhenFrozen { get { return true; } } public override void Use(Player p, string message, CommandData data) { TextFile rulesFile = TextFile.Files["Rules"]; diff --git a/MCGalaxy/Commands/other/CmdSendCmd.cs b/MCGalaxy/Commands/other/CmdSendCmd.cs index b9bd97163..24b66d94d 100644 --- a/MCGalaxy/Commands/other/CmdSendCmd.cs +++ b/MCGalaxy/Commands/other/CmdSendCmd.cs @@ -32,7 +32,8 @@ namespace MCGalaxy.Commands.Misc { if (!CheckRank(p, data, target, "send commands for", true)) return; if (args.Length == 1) { p.Message("No command name given."); return; } - string cmdName = args[1], cmdArgs = args.Length > 2 ? args[2] : ""; + string cmdName = args[1]; + string cmdArgs = args.Length > 2 ? args[2] : ""; Command.Search(ref cmdName, ref cmdArgs); Command cmd = Command.Find(cmdName);