Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Core/GameEngine/Source/GameClient/System/ParticleSys.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1235,6 +1235,12 @@ ParticleSystem::~ParticleSystem()
{

DEBUG_ASSERTCRASH( m_slaveSystem->getMaster() == this, ("~ParticleSystem: Our slave doesn't have us as a master!") );

// TheSuperHackers @bugfix wh1ter0se69 10/08/2026 Destroy the slave instead of orphaning it
// alive. A slave has no position of its own - its master merges one in on every burst - and
// nothing stops a masterless slave from emitting, so it starts bursting at the world origin.
m_slaveSystem->destroy();

m_slaveSystem->setMaster( nullptr );
setSlave( nullptr );

Expand Down
Loading