From 02eca33d2357c5dac70d65f302d6cd81cb7c38d0 Mon Sep 17 00:00:00 2001 From: Josh <24308517+FreebaseJosh@users.noreply.github.com> Date: Sun, 22 Oct 2017 15:27:08 -0500 Subject: [PATCH] Temp fix for Boss Camera glitching --- ServerExt/Classes/ExtPlayerController.uc | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/ServerExt/Classes/ExtPlayerController.uc b/ServerExt/Classes/ExtPlayerController.uc index 343ed60..b3ef676 100644 --- a/ServerExt/Classes/ExtPlayerController.uc +++ b/ServerExt/Classes/ExtPlayerController.uc @@ -605,15 +605,18 @@ simulated function CancelConnection() function NotifyLevelUp(class PerkClass, byte PerkLevel); -function ShowBossNameplate( KFInterface_MonsterBoss KFBoss, optional string PlayerName) -{ +function SetBossCamera( KFInterface_MonsterBoss Boss ); + +function ShowBossNameplate( KFInterface_MonsterBoss KFBoss, optional string PlayerName ); +/*{ if( !bNamePlateShown ) // Dont make multiple bosses pop this up multiple times. { bNamePlateShown = true; Super.ShowBossNameplate(KFBoss,PlayerName); SetTimer(8,false,'HideBossNameplate'); // MAKE sure it goes hidden. } -} +}*/ + function HideBossNameplate() { if( !bNamePlateHidden ) @@ -1181,4 +1184,4 @@ defaultproperties NVG_DOF_SharpRadius=2500.0 NVG_DOF_FocalRadius=3500.0 NVG_DOF_MaxNearBlurSize=0.25 -} \ No newline at end of file +}