From 1edd965dbe901e6452afe0523f7d1dc86de0d2d3 Mon Sep 17 00:00:00 2001 From: GenZmeY Date: Tue, 9 Feb 2021 01:30:48 +0300 Subject: [PATCH] fix: base perk at the start --- ServerExt/Classes/ExtPlayerController.uc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ServerExt/Classes/ExtPlayerController.uc b/ServerExt/Classes/ExtPlayerController.uc index 7367e81..7a3c9de 100644 --- a/ServerExt/Classes/ExtPlayerController.uc +++ b/ServerExt/Classes/ExtPlayerController.uc @@ -97,7 +97,7 @@ function CheckPerk() if (KFPlayerReplicationInfo(PlayerReplicationInfo)!=None) { KFPlayerReplicationInfo(PlayerReplicationInfo).NetPerkIndex = 0; - KFPlayerReplicationInfo(PlayerReplicationInfo).CurrentPerkClass = ActivePerkManager.Class; + KFPlayerReplicationInfo(PlayerReplicationInfo).CurrentPerkClass = ActivePerkManager.CurrentPerk.BasePerk; } } }