From a1f81f59207958fb76444d55ff961a77bf949e07 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Thu, 25 Aug 2016 22:48:12 +1000 Subject: [PATCH] Fix the one command where I forgot to put a + in its /help for its extra permission. --- Commands/Information/CmdRules.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Commands/Information/CmdRules.cs b/Commands/Information/CmdRules.cs index 554fdd638..209916872 100644 --- a/Commands/Information/CmdRules.cs +++ b/Commands/Information/CmdRules.cs @@ -28,7 +28,7 @@ namespace MCGalaxy.Commands public override bool museumUsable { get { return true; } } public override LevelPermission defaultRank { get { return LevelPermission.Banned; } } public override CommandPerm[] ExtraPerms { - get { return new[] { new CommandPerm(LevelPermission.Builder, "can send rules to other players") }; } + get { return new[] { new CommandPerm(LevelPermission.Builder, "+ can send rules to other players") }; } } public override void Use(Player p, string message) {