extras/src/main/java/pw/kaboom/extras/commands/CommandSpawn.java

50 lines
1.9 KiB
Java
Raw Normal View History

2019-12-17 12:37:59 +00:00
package pw.kaboom.extras.commands;
2019-07-30 14:41:54 +00:00
import net.kyori.adventure.text.Component;
2019-07-30 14:41:54 +00:00
import org.bukkit.Bukkit;
import org.bukkit.Location;
import org.bukkit.World;
import org.bukkit.block.Block;
import org.bukkit.block.BlockFace;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;
2019-09-22 02:37:43 +00:00
import org.bukkit.command.ConsoleCommandSender;
2019-07-30 14:41:54 +00:00
import org.bukkit.entity.Player;
import javax.annotation.Nonnull;
2019-12-21 13:39:31 +00:00
public final class CommandSpawn implements CommandExecutor {
public boolean onCommand(final @Nonnull CommandSender sender,
final @Nonnull Command command,
final @Nonnull String label,
final String[] args) {
2022-05-20 02:35:48 +00:00
if (sender instanceof ConsoleCommandSender) {
sender.sendMessage(Component
.text("Command has to be run by a player"));
2022-05-20 02:35:48 +00:00
} else {
final Player player = (Player) sender;
final World defaultWorld = Bukkit.getWorld("world");
final World world = (defaultWorld == null) ? Bukkit.getWorlds().get(0) : defaultWorld;
2022-05-20 02:35:48 +00:00
final Location spawnLocation = world.getSpawnLocation();
final int maxWorldHeight = 256;
for (double y = spawnLocation.getY(); y <= maxWorldHeight; y++) {
final Location yLocation = new Location(world, spawnLocation.getX(), y,
spawnLocation.getZ());
2022-05-20 02:35:48 +00:00
final Block coordBlock = world.getBlockAt(yLocation);
if (!coordBlock.getType().isSolid()
&& !coordBlock.getRelative(BlockFace.UP).getType().isSolid()) {
player.teleportAsync(yLocation);
break;
}
}
player.sendMessage(Component
.text("Successfully moved to spawn"));
2022-05-20 02:35:48 +00:00
}
return true;
}
2019-07-30 14:41:54 +00:00
}