getSteam function

This commit is contained in:
Voxelstice 2022-07-10 04:43:07 +10:00 committed by GitHub
parent 1ad1601e96
commit e93a1f93b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -554,6 +554,12 @@ public class TileEntityReactorZirnox extends TileEntityMachineBase implements IF
public Object[] getWater(Context context, Arguments args) {
return new Object[] {water.getFill()};
}
@Callback
@Optional.Method(modid = "OpenComputers")
public Object[] getSteam(Context context, Arguments args) {
return new Object[] {steam.getFill()};
}
@Callback
@Optional.Method(modid = "OpenComputers")