Static plz

This commit is contained in:
Olof Larsson 2013-08-05 13:33:09 +02:00
parent f0dfc539ba
commit ae2c1285d6

View File

@ -710,17 +710,17 @@ public class Mixin
// STATIC EXPOSE: COMMAND
// -------------------------------------------- //
public boolean dispatchCommand(CommandSender sender, String commandLine)
public static boolean dispatchCommand(CommandSender sender, String commandLine)
{
return getCommandMixin().dispatchCommand(sender, commandLine);
}
public boolean dispatchCommand(SenderEntity<?> sender, String commandLine)
public static boolean dispatchCommand(SenderEntity<?> sender, String commandLine)
{
return getCommandMixin().dispatchCommand(sender, commandLine);
}
public boolean dispatchCommand(String sender, String commandLine)
public static boolean dispatchCommand(String sender, String commandLine)
{
return getCommandMixin().dispatchCommand(sender, commandLine);
}