Skip to content

Commit

Permalink
Irradiators no longer affect directly adjacent fuelcells.
Browse files Browse the repository at this point in the history
  • Loading branch information
hellrage committed May 24, 2020
1 parent fe3f95c commit 5594ae6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NC Reactor Planner/Irradiator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ private void WalkLineToValidSource(Vector3 offset)
Block block = Reactor.BlockAt(pos);
if (block is FuelCell fuelCell)
{
if (fuelCell.Active)
if (fuelCell.Active && moderatorsInLine >= 1)
{
this.ModeratedNeutronFlux += sumModeratorFlux;
fuelCell.PositionalEfficiency += sumModeratorEfficiency * EfficiencyMultiplier / moderatorsInLine;
Expand Down

0 comments on commit 5594ae6

Please sign in to comment.