Support for the CAPI plugin.

This commit is contained in:
Olof Larsson
2011-10-14 15:03:23 +02:00
parent 3967579884
commit 00f6f4ab05
7 changed files with 141 additions and 10 deletions

View File

@ -180,10 +180,10 @@ public abstract class MPlugin extends JavaPlugin
public boolean handleCommand(CommandSender sender, String commandString, boolean testOnly)
{
boolean noSlash = false;
boolean noSlash = true;
if (commandString.startsWith("/"))
{
noSlash = true;
noSlash = false;
commandString = commandString.substring(1);
}