mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Fix sizes for default remnant
This commit is contained in:
parent
bb1f20c822
commit
82128743aa
@ -82,9 +82,9 @@ namespace NewHorizons.Builder.Body
|
||||
{
|
||||
if (remnantType == StellarRemnantType.Default)
|
||||
{
|
||||
if (size > 4000)
|
||||
if (size >= 4000)
|
||||
remnantType = StellarRemnantType.BlackHole;
|
||||
else if (2000 < size && size < 3000)
|
||||
else if (2000 < size && size < 4000)
|
||||
remnantType = StellarRemnantType.NeutronStar;
|
||||
else
|
||||
remnantType = StellarRemnantType.WhiteDwarf;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user