From 32a689788f720d89e295f852a88445c67e62fd50 Mon Sep 17 00:00:00 2001
From: Dogan <gfldogan@gmail.com>
Date: Sun, 29 Sep 2019 22:48:12 +0200
Subject: [PATCH] FakePopulation: maybe its better to disable this

---
 FakePopulation/scripting/FakePopulation.sp | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/FakePopulation/scripting/FakePopulation.sp b/FakePopulation/scripting/FakePopulation.sp
index b56fccd6..4dbc3816 100644
--- a/FakePopulation/scripting/FakePopulation.sp
+++ b/FakePopulation/scripting/FakePopulation.sp
@@ -33,7 +33,7 @@ public Plugin myinfo =
 public void OnPluginStart()
 {
 	RegAdminCmd("sm_debugfakes", Command_DebugFakes, ADMFLAG_RCON, "");
-	RegAdminCmd("sm_setfakes", Command_SetFakes, ADMFLAG_RCON, "");
+	//RegAdminCmd("sm_setfakes", Command_SetFakes, ADMFLAG_RCON, "");
 
 	g_iAdminFakes = -1;
 	g_bMapEnded = false;
@@ -112,7 +112,7 @@ public Action Command_DebugFakes(int client, int argc)
 //----------------------------------------------------------------------------------------------------
 // Purpose:
 //----------------------------------------------------------------------------------------------------
-public Action Command_SetFakes(int client, int argc)
+/*public Action Command_SetFakes(int client, int argc)
 {
 	if (argc < 1)
 	{
@@ -132,8 +132,7 @@ public Action Command_SetFakes(int client, int argc)
 	ReplyToCommand(client, "[SM] You set the amount of Fake Players to %d.", g_iAdminFakes);
 	CheckPopulation();
 	return Plugin_Handled;
-
-}
+}*/
 
 //----------------------------------------------------------------------------------------------------
 // Purpose:
@@ -319,4 +318,4 @@ public void OnGameFrame()
 			SetEntProp(iResEnt, Prop_Send, "m_iPing", g_iLatency[i], _, i);
 		}
 	}
-}
+}
\ No newline at end of file