Body:finalize: Run even if body.init wasn't called

We now run body.finalizeReq even if body.init wasn't called. We'll
do a finer-grained check on each aspect of Body that needs to be
finalized now. This check was too large-grained.
This commit is contained in:
2025-09-15 08:23:54 -04:00
parent baad2a9890
commit 0ec227cf9e
2 changed files with 1 additions and 11 deletions
+1 -2
View File
@@ -77,8 +77,7 @@ private:
* This flag ensures that JOLTing happens exactly once and provides
* a synchronization point for the entire system initialization.
*/
bool threadsHaveBeenJolted = false,
bodyComponentInitialized = false;
bool threadsHaveBeenJolted = false;
private:
class MindLifetimeMgmtOp;