-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
amend(105): Allow players to abstain, define quorum #22
Conversation
@@ -7,7 +7,11 @@ Type: Mutable | |||
|
|||
# Rule | |||
|
|||
Every player is an eligible voter. Every eligible voter must participate in every vote on rule-changes. | |||
Every player is an eligible voter. Quorum for a vote is reached when more than half of all eligible voters participate in the proposed rule-change. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we include the formula used here? e.g. (n div 2) + 1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A more formal definition:
let n = number of active players
let v = number of votes
let q = Floor(n / 2) + 1
if v >= q, quorum is reached.
7c39d42
to
784c6df
Compare
+1 |
784c6df
to
60b8440
Compare
@@ -7,7 +7,21 @@ Type: Mutable | |||
|
|||
# Rule | |||
|
|||
Every player is an eligible voter. Every eligible voter must participate in every vote on rule-changes. | |||
Every active player is an eligible voter. | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should say that achieving quorum is required for a ruling to take place.
60b8440
to
44a49fe
Compare
44a49fe
to
1128086
Compare
Was tempted to make this two rules, but the idea of quorum requires that voters can choose to not vote, as opposed to voting against the proposal outright. |
+1 |
This changes the required amount of participation in any given vote from 100% (everyone) to 'more than half' (50%+1)
1128086
to
3d0eafc
Compare
What
This defines Quorum required for a vote (the amount of participation amongst Players needed to certify a vote as valid) to be "more than half" of eligible voters.
Previously, all votes required 100% participation.
Why
100% participation is impractical in this medium and sets the bar for active participation to be too high would-be casual Players.