mirror of
https://github.com/TheDeus-Group/TFM-4.3-Reloaded.git
synced 2024-11-01 00:49:43 +00:00
Remove offline tp command
This commit is contained in:
parent
193b22adb0
commit
01e12a617b
|
@ -1,49 +0,0 @@
|
|||
package me.StevenLawson.TotalFreedomMod.commands;
|
||||
|
||||
import com.earth2me.essentials.User;
|
||||
import me.StevenLawson.TotalFreedomMod.bridge.EssentialsBridge;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.OfflinePlayer;
|
||||
import org.bukkit.command.Command;
|
||||
import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
@CommandPermissions(level = AdminLevel.SUPER, source = SourceType.ONLY_IN_GAME)
|
||||
public class Command_offlinetp extends FreedomCommand {
|
||||
@Override
|
||||
public boolean run(CommandSender sender, Player sender_p, Command cmd, String commandLabel, String[] args, boolean senderIsConsole) {
|
||||
OfflinePlayer target = null;
|
||||
String searchString = args[0];
|
||||
|
||||
for (OfflinePlayer offlinePlayer : Bukkit.getOfflinePlayers()) {
|
||||
if(offlinePlayer.getName().equalsIgnoreCase(searchString)) {
|
||||
target = offlinePlayer;
|
||||
break;
|
||||
} else if (offlinePlayer.getName().startsWith(searchString.toLowerCase())) {
|
||||
target = offlinePlayer;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if(target == null) {
|
||||
playerMsg(sender, FreedomCommand.PLAYER_NOT_FOUND);
|
||||
return true;
|
||||
}
|
||||
|
||||
if(target.isOnline()) {
|
||||
playerMsg(sender, "That player is already online. Use /tp.");
|
||||
return true;
|
||||
}
|
||||
|
||||
playerMsg(sender, String.format("Teleporting to %s's last known location...", target.getName()));
|
||||
try {
|
||||
Location location = EssentialsBridge.getEssentialsUser(target.getName()).getLastLocation();
|
||||
sender_p.teleport(location);
|
||||
} catch (Exception e) {
|
||||
playerMsg(sender, "Oops");
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
|
@ -107,7 +107,6 @@ public class Commands {
|
|||
plugin.getCommand("wipeflatlands").setExecutor(new Command_wipeflatlands());
|
||||
plugin.getCommand("wipeuserdata").setExecutor(new Command_wipeuserdata());
|
||||
plugin.getCommand("whoami").setExecutor(new Command_whoami());
|
||||
plugin.getCommand("offlinetp").setExecutor(new Command_offlinetp());
|
||||
plugin.getCommand("resetplayer").setExecutor(new Command_resetplayer());
|
||||
}
|
||||
}
|
||||
|
|
|
@ -334,10 +334,6 @@ commands:
|
|||
whoami:
|
||||
description: 'Who am I? Who are you? What am I doing here?'
|
||||
usage: '/<command>'
|
||||
offlinetp:
|
||||
aliases: ["otp"]
|
||||
description: 'Teleport to an offline player''s last known location.'
|
||||
usage: '/<command> <partialName>'
|
||||
resetplayer:
|
||||
aliases: ["resetplayerdata"]
|
||||
description: 'Reset a player''s data.'
|
||||
|
|
Loading…
Reference in a new issue