Made command registering override per default.

This commit is contained in:
Olof Larsson 2013-03-28 10:51:25 +01:00
parent 61d7b7cb12
commit 79d382ee40

View File

@ -157,12 +157,12 @@ public abstract class MCommand
public boolean register()
{
return register(MCore.get(), false);
return register(MCore.get(), true);
}
public boolean register(MPlugin mplugin)
{
return this.register(mplugin, false);
return this.register(mplugin, true);
}
public boolean register(boolean override)