mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-13 20:52:37 +00:00
22 lines
525 B
Java
22 lines
525 B
Java
package com.earth2me.essentials.commands;
|
|
|
|
import static com.earth2me.essentials.I18n._;
|
|
import com.earth2me.essentials.User;
|
|
import org.bukkit.Server;
|
|
|
|
|
|
public class Commandtptoggle extends EssentialsCommand
|
|
{
|
|
public Commandtptoggle()
|
|
{
|
|
super("tptoggle");
|
|
}
|
|
|
|
@Override
|
|
public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception
|
|
{
|
|
user.sendMessage(user.toggleTeleportEnabled()
|
|
? _("teleportationEnabled")
|
|
: _("teleportationDisabled"));
|
|
}
|
|
}
|