From a1aa65dda8cfdcf7ce3767f9ce86dcc84a9bc78a Mon Sep 17 00:00:00 2001 From: Noah Pilarski Date: Fri, 26 Aug 2022 23:31:41 -0400 Subject: [PATCH] Uh oh --- .../Components/SizeControllers/StarEvolutionController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NewHorizons/Components/SizeControllers/StarEvolutionController.cs b/NewHorizons/Components/SizeControllers/StarEvolutionController.cs index 8398cd97..7412c07e 100644 --- a/NewHorizons/Components/SizeControllers/StarEvolutionController.cs +++ b/NewHorizons/Components/SizeControllers/StarEvolutionController.cs @@ -194,7 +194,7 @@ namespace NewHorizons.Components.SizeControllers var secondsElapsed = TimeLoop.GetSecondsElapsed(); var lifespanInSeconds = lifespan * 60; - if (secondsElapsed >= lifespanInSeconds) + if (willExplode && secondsElapsed >= lifespanInSeconds) { var timeAfter = secondsElapsed - lifespanInSeconds; if (timeAfter <= collapseTime)