This commit is contained in:
boy0001 2015-07-21 14:27:13 +10:00
parent 9c5d6a979a
commit 9fefdf3313

View File

@ -293,7 +293,10 @@ public class PlayerEvents extends com.intellectualcrafters.plot.listeners.PlotLi
@EventHandler
public void PlayerCommand(final PlayerCommandPreprocessEvent event) {
final String message = event.getMessage().toLowerCase().replaceAll("/", "");
final String message = event.getMessage().toLowerCase().replaceAll("/", "").trim();
if (message.length() == 0) {
return;
}
String[] split = message.split(" ");
PluginCommand cmd = Bukkit.getServer().getPluginCommand(split[0]);
if (cmd == null) {