Fix /zone set motd only keeping first arg

This commit is contained in:
UnknownShadow200 2018-02-28 11:55:30 +11:00
parent a06f5249e3
commit 33f25ed326

View File

@ -34,7 +34,7 @@ namespace MCGalaxy.Commands.Moderation {
} }
public override void Use(Player p, string message) { public override void Use(Player p, string message) {
string[] args = message.SplitSpaces(); string[] args = message.SplitSpaces(4);
if (message.Length == 0) { Help(p); return; } if (message.Length == 0) { Help(p); return; }
string opt = args[0]; string opt = args[0];