Skip to content

Commit 0023817

Browse files
committed
Fix reactor not outputting the correct coolant
1 parent 671f3b3 commit 0023817

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/gregtech/common/metatileentities/multi/MetaTileEntityFissionReactor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ protected void updateFormedValid() {
125125
coolantImport.getFluidTank().drain(this.flowRate, true);
126126
}
127127
for (ICoolantHandler coolantExport : this.getAbilities(MultiblockAbility.EXPORT_COOLANT)) {
128-
coolantExport.getFluidTank().fill(coolantExport.getCoolant().getFluid(this.flowRate), true);
128+
coolantExport.getFluidTank().fill(coolantExport.getCoolant().getProperty(PropertyKey.COOLANT).getHotHPCoolant().getFluid(this.flowRate), true);
129129
}
130130

131131
// Fuel handling

0 commit comments

Comments
 (0)