diff --git a/MCGalaxy/Commands/Information/CmdMapInfo.cs b/MCGalaxy/Commands/Information/CmdMapInfo.cs index 735df96d9..b43361a91 100644 --- a/MCGalaxy/Commands/Information/CmdMapInfo.cs +++ b/MCGalaxy/Commands/Information/CmdMapInfo.cs @@ -106,7 +106,7 @@ namespace MCGalaxy.Commands { Player.Message(p, " &aBuild whitelist: " + JoinNames(bWhitelist, p)); } if (bBlacklist.Count > 0) { - Player.Message(p, " &Build blacklist: " + JoinNames(bBlacklist, p)); + Player.Message(p, " &cBuild blacklist: " + JoinNames(bBlacklist, p)); } if (String.IsNullOrEmpty(data.RealmOwner)) diff --git a/MCGalaxy/Levels/LevelAccess.cs b/MCGalaxy/Levels/LevelAccess.cs index 1acd9fd3d..6fbc6f4cc 100644 --- a/MCGalaxy/Levels/LevelAccess.cs +++ b/MCGalaxy/Levels/LevelAccess.cs @@ -169,8 +169,9 @@ namespace MCGalaxy { bool CheckRank(Player p, LevelPermission perm, string type, bool newPerm) { if (p != null && perm > p.Rank) { - Player.Message(p, "You cannot change the {0} rank of a level {1} a {0} rank higher than yours.", - type.ToLower(), newPerm ? "to" : "with"); + Player.Message(p, "You cannot change the {0} rank of this level{1} higher than yours.", + type.ToLower(), + newPerm ? " to a rank" : ", as its current " + type.ToLower() + " rank is"); return false; } return true;