Fix the vote delay not working properly
This commit is contained in:
parent
65b370ade7
commit
75128a2f17
@ -109,11 +109,15 @@ void dispatchUserMessage(bf_read &buffer, int type)
|
|||||||
if (*vote_kickn && friendly_kicked)
|
if (*vote_kickn && friendly_kicked)
|
||||||
{
|
{
|
||||||
vote_command = { "vote option2", 1000u + (rand() % 5000) };
|
vote_command = { "vote option2", 1000u + (rand() % 5000) };
|
||||||
|
vote_command.timer.update();
|
||||||
if (*vote_rage_vote && !friendly_caller)
|
if (*vote_rage_vote && !friendly_caller)
|
||||||
pl_caller.state = k_EState::RAGE;
|
pl_caller.state = k_EState::RAGE;
|
||||||
}
|
}
|
||||||
else if (*vote_kicky && !friendly_kicked)
|
else if (*vote_kicky && !friendly_kicked)
|
||||||
|
{
|
||||||
vote_command = { "vote option1", 1000u + (rand() % 5000) };
|
vote_command = { "vote option1", 1000u + (rand() % 5000) };
|
||||||
|
vote_command.timer.update();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (*party_say)
|
if (*party_say)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user