@@ -46,6 +46,7 @@ import net.minecraft.block.entity.FurnaceBlockEntity
4646import net.minecraft.block.entity.HopperBlockEntity
4747import net.minecraft.block.entity.ShulkerBoxBlockEntity
4848import net.minecraft.block.entity.SmokerBlockEntity
49+ import net.minecraft.block.entity.TrappedChestBlockEntity
4950import net.minecraft.entity.Entity
5051import net.minecraft.entity.decoration.ItemFrameEntity
5152import 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