From 01041fb645b6eb055450898737229214814ae3f3 Mon Sep 17 00:00:00 2001 From: illyum <90023277+itzilly@users.noreply.github.com> Date: Tue, 23 Jul 2024 17:09:56 -0600 Subject: [PATCH] chore: remove comments --- src/main/kotlin/com/github/itzilly/sbt/SkyBlockTweaks.kt | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/kotlin/com/github/itzilly/sbt/SkyBlockTweaks.kt b/src/main/kotlin/com/github/itzilly/sbt/SkyBlockTweaks.kt index aaa64ab..ceef2f4 100644 --- a/src/main/kotlin/com/github/itzilly/sbt/SkyBlockTweaks.kt +++ b/src/main/kotlin/com/github/itzilly/sbt/SkyBlockTweaks.kt @@ -190,11 +190,9 @@ class KeyInputHandler { RouteMarker(boundXMin.toInt(), boundYMin.toInt(), boundZMin.toInt(), 0u, 1u, 0u, RouteOptions("Min Bounds")) Minecraft.getMinecraft().thePlayer.addChatMessage(ChatComponentText("Searching...")) - // Loop over each block in the defined bounds for (x in boundXMin.toInt()..boundXMax.toInt()) { for (y in boundYMin.toInt()..boundYMax.toInt()) { for (z in boundZMin.toInt()..boundZMax.toInt()) { - // Get the block at the current coordinates val block = world.getBlockState(BlockPos(x, y, z)).block if (block == Blocks.chest || block == Blocks.trapped_chest || block == Blocks.ender_chest) { val point = RouteMarker(x, y, z, 0u, 0u, 1u, RouteOptions("Located point"))