diff --git a/scripting/include/feedthetrolls/events.inc b/scripting/include/feedthetrolls/events.inc index c6f3f99..af0be62 100644 --- a/scripting/include/feedthetrolls/events.inc +++ b/scripting/include/feedthetrolls/events.inc @@ -50,7 +50,7 @@ static float SPIT_VEL[3] = { 0.0, 0.0, -1.0 }; public Action Timer_CheckSpecial(Handle h, int specialID) { int special = GetClientOfUserId(specialID); // Check if new player is the spawned special: - if(spIsActive && special > 0 && IsFakeClient(special) && GetClientTeam(special) == 3) { + if(spIsActive && special > 0 && IsFakeClient(special)) { //g_iPendingSurvivorAdd if(GetClientTeam(special) == 2 && g_iPendingSurvivorAdd && GetEntProp(special, Prop_Send, "m_humanSpectatorUserID") == 0) { g_iPendingSurvivorAdd = false; diff --git a/scripting/include/feedthetrolls/misc.inc b/scripting/include/feedthetrolls/misc.inc index e280ecd..a2bcf69 100644 --- a/scripting/include/feedthetrolls/misc.inc +++ b/scripting/include/feedthetrolls/misc.inc @@ -435,7 +435,7 @@ bool AddSurvivor() { return false; } - int i = CreateFakeClient("GuessWhoBot"); + int i = CreateFakeClient("FTTSurvivorBot"); bool result; if (i > 0) { if (DispatchKeyValue(i, "classname", "SurvivorBot")) {