JoinCommand and ArenaListCommand somewhat done.

This commit is contained in:
Garbage Mule
2011-12-10 23:49:39 +01:00
parent 289b1792f5
commit c420568cb9
28 changed files with 2723 additions and 343 deletions
+19
View File
@@ -0,0 +1,19 @@
package mock.bukkit;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
public class MockCommand extends Command
{
public MockCommand(String name)
{
super(name);
}
@Override
public boolean execute(CommandSender arg0, String arg1, String[] arg2)
{
return false;
}
}