mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 20:29:20 +00:00
20 lines
No EOL
395 B
Java
20 lines
No EOL
395 B
Java
package com.earth2me.essentials.commands;
|
|
|
|
import com.earth2me.essentials.User;
|
|
import org.bukkit.Server;
|
|
|
|
|
|
public class Commandworkbench extends EssentialsCommand
|
|
{
|
|
public Commandworkbench()
|
|
{
|
|
super("workbench");
|
|
}
|
|
|
|
|
|
@Override
|
|
public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception
|
|
{
|
|
user.openWorkbench(null, true);
|
|
}
|
|
} |