Files
LT3andGitHub 30bd96e37e Ranked Choice Voting (#4166)
## About The Pull Request

Implements ranked choice voting for storyteller and map vote

## Why It's Good For The Game

I can close the secret storyteller PR

## Changelog

🆑 LT3
qol: Ranked choice voting is now available for storyteller and map votes
/🆑
2025-07-02 17:14:40 -06:00

7 lines
279 B
Plaintext

// Vote subsystem counting methods
/// Each person ranks their votes in order of preference
#define VOTE_COUNT_METHOD_RANKED 3
/// The choice with the most votes wins. Ties are broken by the first choice to reach that number of votes.
#define VOTE_WINNER_METHOD_RANKED "Ranked"