Delete src/main/java/de/teleportsuite/commands/BackCommand.java via Git Manager GUI
This commit is contained in:
@@ -1,22 +0,0 @@
|
||||
package de.teleportsuite.commands;
|
||||
|
||||
import de.teleportsuite.TeleportSuite;
|
||||
import de.teleportsuite.models.TeleportLocation;
|
||||
import org.bukkit.command.*;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
public class BackCommand implements CommandExecutor {
|
||||
private final TeleportSuite plugin;
|
||||
public BackCommand(TeleportSuite p) { this.plugin = p; }
|
||||
|
||||
@Override
|
||||
public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
|
||||
if (!(sender instanceof Player)) { sender.sendMessage("§cNur für Spieler!"); return true; }
|
||||
Player p = (Player) sender;
|
||||
if (!p.hasPermission("teleportsuite.back")) { p.sendMessage(plugin.getConfigManager().getMessage("no-permission")); return true; }
|
||||
TeleportLocation loc = plugin.getDatabaseManager().getLastLocation(p.getUniqueId());
|
||||
if (loc == null) { p.sendMessage(plugin.getConfigManager().getMessage("back-no-location")); return true; }
|
||||
plugin.getTeleportManager().teleport(p, loc, false);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user