9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-27 19:19:07 +00:00
This commit is contained in:
Daniel Mills
2020-01-06 01:40:16 -05:00
parent 8b8d59065f
commit a7e58b715b
4 changed files with 14 additions and 75 deletions

View File

@@ -0,0 +1,14 @@
package ninja.bytecode.iris;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;
public class CommandIris implements CommandExecutor
{
@Override
public boolean onCommand(CommandSender sender, Command command, String label, String[] args)
{
return false;
}
}