diff --git a/main/src/main/java/net/citizensnpcs/commands/AdminCommands.java b/main/src/main/java/net/citizensnpcs/commands/AdminCommands.java index 1a9710f3f..118051576 100644 --- a/main/src/main/java/net/citizensnpcs/commands/AdminCommands.java +++ b/main/src/main/java/net/citizensnpcs/commands/AdminCommands.java @@ -1,8 +1,6 @@ package net.citizensnpcs.commands; -import org.bukkit.ChunkSnapshot; import org.bukkit.command.CommandSender; -import org.bukkit.entity.Player; import net.citizensnpcs.Citizens; import net.citizensnpcs.api.command.Command; @@ -30,14 +28,6 @@ public class AdminCommands { Messaging.send(sender, " <7>-- Written by fullwall and aPunch"); Messaging.send(sender, " <7>-- Source Code: http://github.com/CitizensDev"); Messaging.send(sender, " <7>-- Website: " + plugin.getDescription().getWebsite()); - ChunkSnapshot cs = ((Player) sender).getLocation().getChunk().getChunkSnapshot(); - for (int y = 79; y < 79 + 16; y++) { - for (int x = 0; x < 16; x++) { - for (int z = 0; z < 16; z++) { - System.out.println(x + " " + y + " " + z + " " + cs.getBlockType(x, y, z)); - } - } - } } @Command(