mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-04-23 22:11:36 -07:00
Fix single tile check if blendbit is 0
This commit is contained in:
parent
656c37372d
commit
66c81246b6
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue