Skip to content

Commit

Permalink
Quick Fix for FPK Boss Round Camera Glitch
Browse files Browse the repository at this point in the history
This makes it so no pets work on Boss Round.
  • Loading branch information
FreebaseJosh authored Oct 22, 2017
1 parent 02eca33 commit 6b79616
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ServerExt/Classes/Ext_T_ZEDHelper.uc
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -240,4 +240,4 @@ defaultproperties
HPScale=0.5
DamageScale=2
FriendlyScalar=0.65
}
}

0 comments on commit 6b79616

Please sign in to comment.