Skip to content

Commit

Permalink
Fix post-voting timer displaying 0 s.
Browse files Browse the repository at this point in the history
Partially addresses #63
  • Loading branch information
NotMyWing committed Dec 7, 2020
1 parent a454001 commit 8ebbcd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gamemodes/amongus/gamemode/vgui/vgui_meeting.moon
Original file line number Diff line number Diff line change
Expand Up @@ -1059,7 +1059,7 @@ meeting.ApplyVote = (playerTable, remaining) =>
-- @param results The table of results.
meeting.End = (results = {}, time = 0) =>
@__currentState = STATES.proceeding
@__currentAnimation = @NewAnimation math.max(0, time - CurTime!) - CurTime!, 0, 0
@__currentAnimation = @NewAnimation math.max(0, time - CurTime!), 0, 0

@DisableAllButtons!
@PurgeConfirms!
Expand Down

0 comments on commit 8ebbcd9

Please sign in to comment.