Fix missing return statement in Spirit update method

This commit is contained in:
2025-05-28 06:37:42 +02:00
parent 2babfa5c1c
commit 128e12621b

View File

@@ -358,6 +358,7 @@ class Spirit {
}
if (t > this.lifeTime) {
this.dispose();
return false;
}
return true;
}