From e5f023804a6d11551d9e7076586440a658701864 Mon Sep 17 00:00:00 2001 From: JohnCorby Date: Wed, 24 Aug 2022 18:28:17 -0700 Subject: [PATCH] grammar --- QSB/Player/QSBPlayerManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/QSB/Player/QSBPlayerManager.cs b/QSB/Player/QSBPlayerManager.cs index 95244ea4..60ec2a4e 100644 --- a/QSB/Player/QSBPlayerManager.cs +++ b/QSB/Player/QSBPlayerManager.cs @@ -132,14 +132,14 @@ public static class QSBPlayerManager public static IEnumerator SendHeartbeat() { - // yeah mirror has it's own hearbeat stuff, but we have problems with "ghost" PlayerInfos due to epic transport being goofy + // yeah mirror has its own hearbeat stuff, but we have problems with "ghost" PlayerInfos due to epic transport being goofy while (true) { if (QSBCore.IsInMultiplayer && QSBCore.IsHost) { foreach (var player in PlayerList) { - // if we didnt receive a response in the last loop then we should kick them + // if we didn't receive a response in the last loop then we should remove them if (!player.HeartbeatReceived) { DebugLog.DebugWrite($"Didn't receive heartbeat from {player} in time. Removing them.", MessageType.Warning);