fix: buff station dying and rotating too soon (#1768)

Tested that the buff station now waits for a player to build it and is alive for 25 seconds before moving positions fixes #1767
This commit is contained in:
David Markowitz 2025-04-23 01:55:36 -07:00 committed by GitHub
parent 1fb1da101c
commit 93fa4e268f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -503,7 +503,7 @@ void BaseSurvivalServer::ActivateSpawnerNetwork(SpawnerNetworkCollection& spawne
if (!possibleSpawners.empty()) { if (!possibleSpawners.empty()) {
auto* spawnerObject = possibleSpawners.at(0); auto* spawnerObject = possibleSpawners.at(0);
spawnerObject->Activate(); spawnerObject->Activate();
spawnerObject->Reset(); spawnerObject->SoftReset();
} }
} }
} }