mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-13 12:38:58 +00:00
20 lines
395 B
Java
20 lines
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);
|
||
|
}
|
||
|
}
|