diff --git a/ServerExt/Classes/ExtPlayerController.uc b/ServerExt/Classes/ExtPlayerController.uc index b3ef676..343ed60 100644 --- a/ServerExt/Classes/ExtPlayerController.uc +++ b/ServerExt/Classes/ExtPlayerController.uc @@ -605,18 +605,15 @@ simulated function CancelConnection() function NotifyLevelUp(class PerkClass, byte PerkLevel); -function SetBossCamera( KFInterface_MonsterBoss Boss ); - -function ShowBossNameplate( KFInterface_MonsterBoss KFBoss, optional string PlayerName ); -/*{ +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 ) @@ -1184,4 +1181,4 @@ defaultproperties NVG_DOF_SharpRadius=2500.0 NVG_DOF_FocalRadius=3500.0 NVG_DOF_MaxNearBlurSize=0.25 -} +} \ No newline at end of file