package com.earth2me.essentials.commands; import org.bukkit.Server; import com.earth2me.essentials.Essentials; import com.earth2me.essentials.User; public class Commandtptoggle extends EssentialsCommand { public Commandtptoggle() { super("tptoggle"); } @Override public void run(Server server, Essentials parent, User user, String commandLabel, String[] args) throws Exception { user.charge(this); user.sendMessage("ยง7Teleportation " + (user.toggleTeleEnabled() ? "enabled." : "disabled.")); } }