MrOats / AngelScript_SC_Plugins

My Playground and hosted Angelscript server plugins for Sven Co-Op.
Mozilla Public License 2.0
7 stars 4 forks source link

Fix: RTV - Vote is not accepted if rtv.bPlaySounds is 0 #15

Open Travmatolog opened 6 years ago

Travmatolog commented 6 years ago

In case rtv.bPlaySounds is 0 PostVote() will not be called at the end of the vote.

else if (secondsleftforvote == 0 && g_PlaySounds.GetBool())
  {

    PostVote();
    g_Scheduler.RemoveTimer(g_TimeUntilVote);
    @g_TimeUntilVote = null;
    secondsleftforvote = g_VotingPeriodTime.GetInt();

  }