From 667437f39baaaadc1052daa474c455f3bbd2b617 Mon Sep 17 00:00:00 2001 From: "liquidbounce-support-bot[bot]" <4211878+liquidbounce-support-bot[bot]@users.noreply.github.com> Date: Fri, 10 Jul 2026 11:00:32 +0000 Subject: [PATCH] feat(storageesp): add spawner esp type covering monster and trial spawners (#8465) --- .../features/module/modules/render/ModuleStorageESP.kt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/kotlin/net/ccbluex/liquidbounce/features/module/modules/render/ModuleStorageESP.kt b/src/main/kotlin/net/ccbluex/liquidbounce/features/module/modules/render/ModuleStorageESP.kt index ac02fc59e1d..52075331263 100644 --- a/src/main/kotlin/net/ccbluex/liquidbounce/features/module/modules/render/ModuleStorageESP.kt +++ b/src/main/kotlin/net/ccbluex/liquidbounce/features/module/modules/render/ModuleStorageESP.kt @@ -76,6 +76,8 @@ import net.minecraft.world.level.block.entity.EnderChestBlockEntity import net.minecraft.world.level.block.entity.HopperBlockEntity import net.minecraft.world.level.block.entity.ShelfBlockEntity import net.minecraft.world.level.block.entity.ShulkerBoxBlockEntity +import net.minecraft.world.level.block.entity.SpawnerBlockEntity +import net.minecraft.world.level.block.entity.TrialSpawnerBlockEntity import net.minecraft.world.level.block.state.BlockState import net.minecraft.world.phys.AABB import net.minecraft.world.phys.shapes.VoxelShape @@ -116,6 +118,7 @@ object ModuleStorageESP : ClientModule("StorageESP", ModuleCategories.RENDER, al object ShulkerBox : ChestType("ShulkerBox", Color4b(Color(0x6e, 0x4d, 0x6e).brighter())) object Pot : ChestType("Pot", Color4b(209, 134, 0)) object Shelf : ChestType("Shelf", Color4b(160, 82, 45)) + object Spawner : ChestType("Spawner", Color4b(Color.RED)) } private val allTypes = arrayOf( @@ -129,6 +132,7 @@ object ModuleStorageESP : ClientModule("StorageESP", ModuleCategories.RENDER, al ChestType.ShulkerBox, ChestType.Pot, ChestType.Shelf, + ChestType.Spawner, ) init { @@ -410,6 +414,8 @@ object ModuleStorageESP : ClientModule("StorageESP", ModuleCategories.RENDER, al is ShulkerBoxBlockEntity -> ChestType.ShulkerBox is DecoratedPotBlockEntity -> ChestType.Pot is ShelfBlockEntity -> ChestType.Shelf + is SpawnerBlockEntity -> ChestType.Spawner + is TrialSpawnerBlockEntity -> ChestType.Spawner else -> null } }