Skip to content

Commit

Permalink
Correct blending on Item-Liquid junctions
Browse files Browse the repository at this point in the history
  • Loading branch information
MEEPofFaith committed Oct 28, 2024
1 parent 01e1169 commit 61a2349
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/tranqol/world/blocks/hybrid/ItemLiquidJunction.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ public boolean outputsItems(){
return true;
}

@Override
public boolean rotatedOutput(int x, int y){
return false;
}

public class ItemLiquidJunctionBuild extends LiquidBuild{
public DirectionalItemBuffer buffer = new DirectionalItemBuffer(capacity);

Expand Down

0 comments on commit 61a2349

Please sign in to comment.