mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 20:29:20 +00:00
![KHobbits](/assets/img/avatar_default.png)
Replace essentials.teleport.hidden with essentials.vanish.interact Fix perm checks in tpall and tpaall
43 lines
1.3 KiB
Java
43 lines
1.3 KiB
Java
package com.earth2me.essentials.commands;
|
|
|
|
import static com.earth2me.essentials.I18n._;
|
|
import com.earth2me.essentials.User;
|
|
import org.bukkit.Server;
|
|
|
|
|
|
public class Commandtpahere extends EssentialsCommand
|
|
{
|
|
public Commandtpahere()
|
|
{
|
|
super("tpahere");
|
|
}
|
|
|
|
@Override
|
|
public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception
|
|
{
|
|
if (args.length < 1)
|
|
{
|
|
throw new NotEnoughArgumentsException();
|
|
}
|
|
|
|
final User player = getPlayer(server, user, args, 0);
|
|
if (!player.isTeleportEnabled())
|
|
{
|
|
throw new Exception(_("teleportDisabled", player.getDisplayName()));
|
|
}
|
|
if (user.getWorld() != player.getWorld() && ess.getSettings().isWorldTeleportPermissions()
|
|
&& !user.isAuthorized("essentials.worlds." + user.getWorld().getName()))
|
|
{
|
|
throw new Exception(_("noPerm", "essentials.worlds." + user.getWorld().getName()));
|
|
}
|
|
player.requestTeleport(user, true);
|
|
player.sendMessage(_("teleportHereRequest", user.getDisplayName()));
|
|
player.sendMessage(_("typeTpaccept"));
|
|
player.sendMessage(_("typeTpdeny"));
|
|
if (ess.getSettings().getTpaAcceptCancellation() != 0)
|
|
{
|
|
player.sendMessage(_("teleportRequestTimeoutInfo", ess.getSettings().getTpaAcceptCancellation()));
|
|
}
|
|
user.sendMessage(_("requestSent", player.getDisplayName()));
|
|
}
|
|
}
|