mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-13 04:36:44 +00:00
53 lines
1.1 KiB
Java
53 lines
1.1 KiB
Java
package com.earth2me.essentials.commands;
|
|
|
|
import static com.earth2me.essentials.I18n._;
|
|
import com.earth2me.essentials.User;
|
|
import com.earth2me.essentials.Util;
|
|
import com.earth2me.essentials.Warps;
|
|
import org.bukkit.Location;
|
|
import org.bukkit.Server;
|
|
|
|
|
|
public class Commandsetwarp extends EssentialsCommand
|
|
{
|
|
public Commandsetwarp()
|
|
{
|
|
super("setwarp");
|
|
}
|
|
|
|
@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();
|
|
}
|
|
|
|
if (Util.isInt(args[0]) || args[0].isEmpty())
|
|
{
|
|
throw new NoSuchFieldException(_("invalidWarpName"));
|
|
}
|
|
|
|
final Location loc = user.getLocation();
|
|
final Warps warps = ess.getWarps();
|
|
Location warpLoc = null;
|
|
|
|
try
|
|
{
|
|
warpLoc = warps.getWarp(args[0]);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
}
|
|
|
|
if (warpLoc == null || user.isAuthorized("essentials.warp.overwrite." + Util.safeString(args[0])))
|
|
{
|
|
warps.setWarp(args[0], loc);
|
|
}
|
|
else
|
|
{
|
|
throw new Exception(_("warpOverwrite"));
|
|
}
|
|
user.sendMessage(_("warpSet", args[0]));
|
|
}
|
|
}
|