mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2025-01-06 04:16:36 +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
1 changed files with 5 additions and 0 deletions
|
@ -79,6 +79,11 @@ public class FluidValveTileEntity extends KineticTileEntity {
|
||||||
behaviours.add(new ValvePipeBehaviour(this));
|
behaviours.add(new ValvePipeBehaviour(this));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean shouldRenderAsTE() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
class ValvePipeBehaviour extends StraightPipeFluidTransportBehaviour {
|
class ValvePipeBehaviour extends StraightPipeFluidTransportBehaviour {
|
||||||
|
|
||||||
public ValvePipeBehaviour(SmartTileEntity te) {
|
public ValvePipeBehaviour(SmartTileEntity te) {
|
||||||
|
|
Loading…
Reference in a new issue