This commit is contained in:
Anuken
2022-09-01 10:49:41 -04:00
parent d216f3920d
commit bc1ff011af

View File

@@ -1298,7 +1298,7 @@ public class LExecutor{
//TODO this can be quite laggy... //TODO this can be quite laggy...
switch(layer){ switch(layer){
case ore -> { case ore -> {
if(b instanceof OverlayFloor || b == Blocks.air && tile.overlay() != b) tile.setOverlayNet(b); if((b instanceof OverlayFloor || b == Blocks.air) && tile.overlay() != b) tile.setOverlayNet(b);
} }
case floor -> { case floor -> {
if(b instanceof Floor f && tile.floor() != f && !f.isOverlay()) tile.setFloorNet(f); if(b instanceof Floor f && tile.floor() != f && !f.isOverlay()) tile.setFloorNet(f);