mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-25 12:25:46 +01:00
Fixes #434
This commit is contained in:
parent
9c5d6a979a
commit
9fefdf3313
@ -293,7 +293,10 @@ public class PlayerEvents extends com.intellectualcrafters.plot.listeners.PlotLi
|
|||||||
|
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void PlayerCommand(final PlayerCommandPreprocessEvent event) {
|
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(" ");
|
String[] split = message.split(" ");
|
||||||
PluginCommand cmd = Bukkit.getServer().getPluginCommand(split[0]);
|
PluginCommand cmd = Bukkit.getServer().getPluginCommand(split[0]);
|
||||||
if (cmd == null) {
|
if (cmd == null) {
|
||||||
|
Loading…
Reference in New Issue
Block a user