diff --git a/src/COWD.cpp b/src/COWD.cpp index b923f1cb8..11b4b310d 100755 --- a/src/COWD.cpp +++ b/src/COWD.cpp @@ -16,7 +16,7 @@ STELLAR_TYPE COWD::EvolveToNextPhase() { stellarType = STELLAR_TYPE::OXYGEN_NEON_WHITE_DWARF; } else { - stellarType = ResolveSNIa(); + stellarType = m_HeShellDetonation ? ResolveHeSD() : ResolveSNIa(); } return stellarType; } diff --git a/src/changelog.h b/src/changelog.h index 8de7208fb..8392f10b6 100644 --- a/src/changelog.h +++ b/src/changelog.h @@ -1699,6 +1699,8 @@ // distribution (Manjaro), possibly C++ version specific. See issue 1441 for description of defect and repair details. // 03.29.02 AB - March 16, 2026 - Defect repair: // - Fix for issue 1463: sign error in the Claeys+2014 common-envelope lambda prescription +// 03.29.03 NRS - April 3, 2026 - Defect repair: +// - Fixed HeSDs not being recorded in the Supernovae logs (mentioned in issue 1350). // // // Version string format is MM.mm.rr, where @@ -1710,7 +1712,7 @@ // if MM is incremented, set mm and rr to 00, even if defect repairs and minor enhancements were also made // if mm is incremented, set rr to 00, even if defect repairs were also made -const std::string VERSION_STRING = "03.29.02"; +const std::string VERSION_STRING = "03.29.03"; # endif // __changelog_h__