From dac8ec621c7c20103ab70460dbb36de9f40bdfe8 Mon Sep 17 00:00:00 2001 From: David Markowitz <39972741+EmosewaMC@users.noreply.github.com> Date: Tue, 1 Feb 2022 08:48:23 -0800 Subject: [PATCH] Added stun immunity for bosses in Battle of Nimbus Station (#428) --- dScripts/WaveBossApe.cpp | 1 - dScripts/WaveBossHammerling.cpp | 1 - dScripts/WaveBossHorsemen.cpp | 1 - 3 files changed, 3 deletions(-) diff --git a/dScripts/WaveBossApe.cpp b/dScripts/WaveBossApe.cpp index c7fdccf2..e1860048 100644 --- a/dScripts/WaveBossApe.cpp +++ b/dScripts/WaveBossApe.cpp @@ -32,7 +32,6 @@ void WaveBossApe::OnFireEventServerSide(Entity *self, Entity *sender, std::strin auto* combatAIComponent = self->GetComponent(); if (combatAIComponent != nullptr) { combatAIComponent->SetDisabled(false); - combatAIComponent->SetStunImmune(false); } } else { BaseEnemyApe::OnFireEventServerSide(self, sender, args, param1, param2, param3); diff --git a/dScripts/WaveBossHammerling.cpp b/dScripts/WaveBossHammerling.cpp index cb161e94..6dce0ae3 100644 --- a/dScripts/WaveBossHammerling.cpp +++ b/dScripts/WaveBossHammerling.cpp @@ -19,7 +19,6 @@ void WaveBossHammerling::OnFireEventServerSide(Entity *self, Entity *sender, std auto* combatAIComponent = self->GetComponent(); if (combatAIComponent != nullptr) { combatAIComponent->SetDisabled(false); - combatAIComponent->SetStunImmune(false); } } } diff --git a/dScripts/WaveBossHorsemen.cpp b/dScripts/WaveBossHorsemen.cpp index 9f71867f..75bffa5b 100644 --- a/dScripts/WaveBossHorsemen.cpp +++ b/dScripts/WaveBossHorsemen.cpp @@ -20,7 +20,6 @@ WaveBossHorsemen::OnFireEventServerSide(Entity *self, Entity *sender, std::strin auto* combatAIComponent = self->GetComponent(); if (combatAIComponent != nullptr) { combatAIComponent->SetDisabled(false); - combatAIComponent->SetStunImmune(false); } } }