Skip to content

Commit 1a677bf

Browse files
committed
Added trapped chests for StorageESP
1 parent 01ac6b0 commit 1a677bf

File tree

1 file changed

+4
-0
lines changed
  • common/src/main/kotlin/com/lambda/module/modules/render

1 file changed

+4
-0
lines changed

common/src/main/kotlin/com/lambda/module/modules/render/StorageESP.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ import net.minecraft.block.entity.FurnaceBlockEntity
4646
import net.minecraft.block.entity.HopperBlockEntity
4747
import net.minecraft.block.entity.ShulkerBoxBlockEntity
4848
import net.minecraft.block.entity.SmokerBlockEntity
49+
import net.minecraft.block.entity.TrappedChestBlockEntity
4950
import net.minecraft.entity.Entity
5051
import net.minecraft.entity.decoration.ItemFrameEntity
5152
import net.minecraft.entity.vehicle.AbstractMinecartEntity
@@ -89,6 +90,7 @@ object StorageESP : Module(
8990
private val barrelColor by setting("Barrel Color", Color(143, 119, 72)) { page == Page.Color && !useBlockColor }
9091
private val blastFurnaceColor by setting("Blast Furnace Color", Color(153, 153, 153)) { page == Page.Color && !useBlockColor }
9192
private val brewingStandColor by setting("Brewing Stand Color", Color(167, 167, 167))
93+
private val trappedChestColor by setting("Trapped Chest Color", Color(216, 127, 51)) { page == Page.Color && !useBlockColor }
9294
private val chestColor by setting("Chest Color", Color(216, 127, 51)) { page == Page.Color && !useBlockColor }
9395
private val dispenserColor by setting("Dispenser Color", Color(153, 153, 153)) { page == Page.Color && !useBlockColor }
9496
private val enderChestColor by setting("Ender Chest Color", Color(127, 63, 178)) { page == Page.Color && !useBlockColor }
@@ -103,6 +105,7 @@ object StorageESP : Module(
103105
BarrelBlockEntity::class,
104106
BlastFurnaceBlockEntity::class,
105107
BrewingStandBlockEntity::class,
108+
TrappedChestBlockEntity::class,
106109
ChestBlockEntity::class,
107110
DispenserBlockEntity::class,
108111
EnderChestBlockEntity::class,
@@ -171,6 +174,7 @@ object StorageESP : Module(
171174
is BarrelBlockEntity -> barrelColor
172175
is BlastFurnaceBlockEntity -> blastFurnaceColor
173176
is BrewingStandBlockEntity -> brewingStandColor
177+
is TrappedChestBlockEntity -> trappedChestColor
174178
is ChestBlockEntity -> chestColor
175179
is DispenserBlockEntity -> dispenserColor
176180
is EnderChestBlockEntity -> enderChestColor

0 commit comments

Comments
 (0)