Essentials/Essentials/src/main/java/com/earth2me/essentials/commands/Commandloom.java

22 lines
552 B
Java

package com.earth2me.essentials.commands;
import com.earth2me.essentials.User;
import org.bukkit.Server;
public class Commandloom extends EssentialsCommand {
public Commandloom() {
super("loom");
}
@Override
public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception {
if (ess.getContainerProvider() == null) {
user.sendTl("unsupportedBrand");
return;
}
ess.getContainerProvider().openLoom(user.getBase());
}
}