From 2c23f72a5055050f9ea6380a238dd328d8780d2d Mon Sep 17 00:00:00 2001 From: zaCade Date: Sun, 24 Feb 2019 11:34:47 +0100 Subject: [PATCH] Status: Remove nosteam flag. --- Status/scripting/Status.sp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Status/scripting/Status.sp b/Status/scripting/Status.sp index 12c4b4e7..09214f11 100644 --- a/Status/scripting/Status.sp +++ b/Status/scripting/Status.sp @@ -2,7 +2,6 @@ #include #include -#include #tryinclude "serverfps.inc" @@ -163,10 +162,7 @@ public Action Command_Status(int client, const char[] command, int args) } if(IsClientInGame(player)) - if (SteamClientAuthenticated(sPlayerAuth)) - FormatEx(sPlayerState, sizeof(sPlayerState), "active"); - else - FormatEx(sPlayerState, sizeof(sPlayerState), "nosteam"); + FormatEx(sPlayerState, sizeof(sPlayerState), "active"); else FormatEx(sPlayerState, sizeof(sPlayerState), "spawning");