Removed Reminders

This commit is contained in:
ChocoTaco 2021-09-29 20:20:00 -04:00
parent df371d1099
commit f371025ff8

View file

@ -175,12 +175,4 @@ function TKvote(%typeName, %arg1, %arg2, %arg3, %arg4)
// Log Vote
voteLog(%client, %typeName, %arg1, %arg2, %arg3, "TeamkillAutovote");
if($Host::EnableVoteSoundReminders > 0)
{
%time = mFloor($Host::VoteTime / ($Host::EnableVoteSoundReminders + 1)) * 1000;
//echo(%time);
for(%i = 0; %i < $Host::EnableVoteSoundReminders; %i++)
Game.voteReminder[%i] = schedule((%time * (%i + 1)), 0, "VoteSound", %game, %typename, %arg1, %arg2);
}
}