diff --git a/sources/Unreal/Connections/ConnectionService.uc b/sources/Unreal/Connections/ConnectionService.uc index e24b39a..30ac2fa 100644 --- a/sources/Unreal/Connections/ConnectionService.uc +++ b/sources/Unreal/Connections/ConnectionService.uc @@ -238,7 +238,7 @@ function bool TryAddingController(Actor other, out byte isSuperRelevant) // for each new `PlayerController`, // we will be detecting new users right after server // detected and properly initialized them. - if (KFSteamStatsAndAchievements(other) == none) { + if (KFSteamStatsAndAchievements(other) != none) { RegisterConnection(PlayerController(other.owner)); } return true;