Fix single tile check if blendbit is 0

This commit is contained in:
Patrick 'Quezler' Mounier 2020-02-10 13:02:21 +01:00
parent 656c37372d
commit 66c81246b6
No known key found for this signature in database
GPG key ID: 0D6CA7326C76D8EA

View file

@ -285,7 +285,7 @@ public class CraterConveyor extends Block implements Autotiler{
if( entity.blendbit1 == 0 // 1 input from the back, 0 from the sides
|| entity.blendbit1 == 2 // 1 input from the back, 1 from the sides
|| entity.blendbit1 == 3 // 1 input from the back, 2 from the sides
) cons.get(tile.back());
) if(blends(tile, tile.rotation(), 2)) cons.get(tile.back());
if( entity.blendbit1 == 3 // 1 input from the back, 2 from the sides
|| entity.blendbit1 == 4 // 0 input from the back, 2 from the sides