From 65eb5cf1c09573841644997123e4d54b74db5da2 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Sun, 4 Feb 2018 21:45:35 +1100 Subject: [PATCH] fix missing space in level pervisit/perbuild deny message due to being above max rank --- MCGalaxy/Levels/AccessController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCGalaxy/Levels/AccessController.cs b/MCGalaxy/Levels/AccessController.cs index 0de50c785..c6395c4f7 100644 --- a/MCGalaxy/Levels/AccessController.cs +++ b/MCGalaxy/Levels/AccessController.cs @@ -75,7 +75,7 @@ namespace MCGalaxy { Player.Message(p, "Only {2}%S+ {3}may {0} {1}", Action, ColoredName, Group.GetColoredName(Min), whitelist); } else if (result == AccessResult.AboveMaxRank) { - Player.Message(p, "Only {2} %Sand below {3}may{0} {1}", + Player.Message(p, "Only {2} %Sand below {3}may {0} {1}", Action, ColoredName, Group.GetColoredName(Max), whitelist); } return false;