From 6b79616e0f7904741ecea5efaa78d1cbf58cc1de Mon Sep 17 00:00:00 2001 From: Josh <24308517+FreebaseJosh@users.noreply.github.com> Date: Sun, 22 Oct 2017 16:24:58 -0500 Subject: [PATCH] Quick Fix for FPK Boss Round Camera Glitch This makes it so no pets work on Boss Round. --- ServerExt/Classes/Ext_T_ZEDHelper.uc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ServerExt/Classes/Ext_T_ZEDHelper.uc b/ServerExt/Classes/Ext_T_ZEDHelper.uc index 7d1c3cd..deef80d 100644 --- a/ServerExt/Classes/Ext_T_ZEDHelper.uc +++ b/ServerExt/Classes/Ext_T_ZEDHelper.uc @@ -73,7 +73,7 @@ final function bool HasLiveZeds() { local KFPawn_Monster M; - if( KFGameReplicationInfo(WorldInfo.GRI).WaveNum>KFGameReplicationInfo(WorldInfo.GRI).WaveMax ) // No pets on possible bonus waves. + if( KFGameReplicationInfo(WorldInfo.GRI).WaveNum>=KFGameReplicationInfo(WorldInfo.GRI).WaveMax ) // No pets on possible bonus waves. return false; foreach WorldInfo.AllPawns(Class'KFPawn_Monster',M) @@ -240,4 +240,4 @@ defaultproperties HPScale=0.5 DamageScale=2 FriendlyScalar=0.65 -} \ No newline at end of file +}