mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-03-15 12:24:28 +07:00
Fixed #8653
This commit is contained in:
parent
1a0edf80f1
commit
9d986e1e8d
@ -221,7 +221,7 @@ public class Conduit extends LiquidBlock implements Autotiler{
|
||||
public boolean acceptLiquid(Building source, Liquid liquid){
|
||||
noSleep();
|
||||
return (liquids.current() == liquid || liquids.currentAmount() < 0.2f)
|
||||
&& (tile == null || (source.relativeTo(tile.x, tile.y) + 2) % 4 != rotation);
|
||||
&& (tile == null || source == this || (source.relativeTo(tile.x, tile.y) + 2) % 4 != rotation);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user