Removed debug

This commit is contained in:
Tastybento 2018-02-10 14:50:52 -08:00
parent 487328950b
commit 4b66811fb0

View File

@ -257,8 +257,6 @@ public class SafeSpotTeleport {
*/
private boolean checkBlock(ChunkSnapshot chunk, int x, int y, int z, int worldHeight) {
World world = location.getWorld();
Bukkit.getLogger().info("checking " + x + " " + y + " "+ z);
Material type = chunk.getBlockType(x, y, z);
if (!type.equals(Material.AIR)) { // AIR
Material space1 = chunk.getBlockType(x, Math.min(y + 1, worldHeight), z);