Skip to content

Commit

Permalink
missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
SirMortimer committed Jul 5, 2019
1 parent a2db10d commit 57f8114
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Kerbalism/Radiation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ public static RadiationBody Info(CelestialBody body)
}

// apply gamma transparency if inside atmosphere
radiation *= gamma_transparency
radiation *= gamma_transparency;

// add emitter radiation after atmosphere transparency
radiation += Emitter.Total(v);
Expand Down

1 comment on commit 57f8114

@sswelm
Copy link
Contributor

@sswelm sswelm commented on 57f8114 Jul 5, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

apparently, this isn't verified automatically

Please sign in to comment.