From 29abb98b4aa5279b3b65e8a268c12f837f0a3166 Mon Sep 17 00:00:00 2001 From: GenZmeY Date: Mon, 31 May 2021 04:49:18 +0300 Subject: [PATCH] replicate only for players --- ScoreboardExt/Classes/ScoreboardExtMut.uc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ScoreboardExt/Classes/ScoreboardExtMut.uc b/ScoreboardExt/Classes/ScoreboardExtMut.uc index 036fd1d..ae4bf63 100644 --- a/ScoreboardExt/Classes/ScoreboardExtMut.uc +++ b/ScoreboardExt/Classes/ScoreboardExtMut.uc @@ -126,7 +126,7 @@ function AddPlayerInfo(Controller C) local SClient RepClient; KFPC = KFPlayerController(C); - if (KFPC == None) + if (KFPC == None || !KFPC.bIsPlayer) return; RepClient.RepInfo = Spawn(class'ScoreboardExtRepInfo', KFPC);