We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f165ab1 commit e5253c4Copy full SHA for e5253c4
src/main/kotlin/com/lambda/module/modules/render/ESP.kt
@@ -90,7 +90,11 @@ object ESP : Module(
90
blockEntity,
91
color,
92
{ worldOutline(it.pos, outlineStyle.toStyle(color)) },
93
- { it.cachedState.getOutlineShape(world, it.pos).boundingBoxes }
+ { entity ->
94
+ entity.cachedState.getOutlineShape(world, entity.pos).boundingBoxes.map { box ->
95
+ box.offset(entity.pos)
96
+ }
97
98
)
99
}
100
0 commit comments