Skip to content

Commit ceaaf92

Browse files
committed
Fix laser particles being incorrectly culled (#8103)
1 parent ebbf8c8 commit ceaaf92

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/main/java/mekanism/client/particle/LaserParticle.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,12 @@ private void updateBoundingBox() {
136136
});
137137
}
138138

139+
@NotNull
140+
@Override
141+
public AABB getRenderBoundingBox(float partialTicks) {
142+
return getBoundingBox();
143+
}
144+
139145
public static class Factory implements ParticleProvider<LaserParticleData> {
140146

141147
private final SpriteSet spriteSet;

0 commit comments

Comments
 (0)