Merge pull request #254 from EmosewaMC/Crux-Prime-Enemy-Fix

This commit is contained in:
Wincent Holm 2021-12-19 08:43:24 +01:00 committed by GitHub
commit 46149b19f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -91,7 +91,7 @@ void BaseRandomServer::SetSpawnerNetwork(Entity* self, const std::string& spawne
if (spawnerName == "Named_Enemies")
{
//spawner->Reset();
spawner->SoftReset();
}
spawner->Activate();
@ -173,12 +173,12 @@ void BaseRandomServer::NamedEnemyDeath(Entity* self, Spawner* spawner)
void BaseRandomServer::SpawnersUp(Entity* self)
{
}
void BaseRandomServer::SpawnersDown(Entity* self)
{
}
void BaseRandomServer::BaseOnTimerDone(Entity* self, const std::string& timerName)

View File

@ -28,7 +28,7 @@ public:
void SpawnersUp(Entity* self);
void SpawnersDown(Entity* self);
void BaseOnTimerDone(Entity* self, const std::string& timerName);
void NotifySpawnerOfDeath(Entity* self, Spawner* spawner);
void NamedEnemyDeath(Entity* self, Spawner* spawner);