mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-13 05:54:17 +01:00
Fix fast fluid valves
- Ensure animated indicators on fluid valves still show up with experimental rendering
This commit is contained in:
parent
3ff3992f97
commit
cf34b2e96b
@ -78,6 +78,11 @@ public class FluidValveTileEntity extends KineticTileEntity {
|
|||||||
public void addBehaviours(List<TileEntityBehaviour> behaviours) {
|
public void addBehaviours(List<TileEntityBehaviour> behaviours) {
|
||||||
behaviours.add(new ValvePipeBehaviour(this));
|
behaviours.add(new ValvePipeBehaviour(this));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean shouldRenderAsTE() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
class ValvePipeBehaviour extends StraightPipeFluidTransportBehaviour {
|
class ValvePipeBehaviour extends StraightPipeFluidTransportBehaviour {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user