From 53e34abbe04dc15c90676e928648f06425f7cc47 Mon Sep 17 00:00:00 2001 From: hydrant Date: Tue, 3 Sep 2019 19:53:01 +0200 Subject: [PATCH] fix --- ReallifeGamemode.Server/Commands/AdminCommands.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ReallifeGamemode.Server/Commands/AdminCommands.cs b/ReallifeGamemode.Server/Commands/AdminCommands.cs index aa6f2317..87a1117f 100644 --- a/ReallifeGamemode.Server/Commands/AdminCommands.cs +++ b/ReallifeGamemode.Server/Commands/AdminCommands.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using GTANetworkAPI; @@ -1488,7 +1488,7 @@ namespace ReallifeGamemode.Server.Commands foreach (var managedClient in peopleInRange) { - if (!managedClient.IsLoggedIn()) return; + if (!managedClient.IsLoggedIn()) continue; if (!managedClient.HasData("isDead") || managedClient.GetData("isDead") == false) continue; playerRevided++;