Skip to content

Commit

Permalink
Active-cooled reactor explosions on restart #163
Browse files Browse the repository at this point in the history
  • Loading branch information
igentuman committed Feb 3, 2025
1 parent 2f5ef82 commit 1720385
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,10 @@ private void tickActiveHeatSinks() {
controllerBE().drainCoolant(coolant, amount);
}
}
controllerBE().activeCooling = activeCooling;
if (controllerBE().activeCooling != activeCooling) {
controllerBE().activeCooling = activeCooling;
controllerBE().setChanged();
}
}

private double getCoolingByCoolant(String coolant, int amount) {
Expand Down

0 comments on commit 1720385

Please sign in to comment.