mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 20:48:56 +01:00
## 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 /🆑
7 lines
279 B
Plaintext
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"
|