rtv: Neon still doesnt like digits

+ print to all when rtv is enabled after initial delay of map start or rtv vote
This commit is contained in:
dogan 2020-07-14 14:49:41 +02:00
parent 9eb7ced18c
commit 4643f44cb1

View File

@ -269,6 +269,7 @@ void AttemptRTV(int client)
public Action Timer_DelayRTV(Handle timer)
{
g_RTVAllowed = true;
PrintToChatAll("[RTVE] RockTheVote is available now!");
}
void StartRTV()
@ -401,8 +402,8 @@ public Action Command_DebugRTV(int client, int args)
int iVotesNeededTotal = iVotesNeededSteam + iVotesNeededNoSteam;
ReplyToCommand(client, "[RTVE] Currently %d Players needed to start a RTV vote.", iVotesNeededTotal);
ReplyToCommand(client, "[RTVE] Calculated on %d Active Steam Players * %f Ratio = %d", iVotersSteam, GetConVarFloat(g_Cvar_Steam_Needed), iVotesNeededSteam);
ReplyToCommand(client, "[RTVE] + on %d Active No Steam Players * %f Ratio = %d.", iVotersNoSteam, GetConVarFloat(g_Cvar_NoSteam_Needed), iVotesNeededNoSteam);
ReplyToCommand(client, "[RTVE] Calculated on %d Active Steam Players * %.2f Ratio = %d", iVotersSteam, GetConVarFloat(g_Cvar_Steam_Needed), iVotesNeededSteam);
ReplyToCommand(client, "[RTVE] + on %d Active No Steam Players * %.2f Ratio = %d.", iVotersNoSteam, GetConVarFloat(g_Cvar_NoSteam_Needed), iVotesNeededNoSteam);
return Plugin_Handled;
}