Skip to content

Commit

Permalink
[MIRROR] Reverts map vote to single method (#2056)
Browse files Browse the repository at this point in the history
* Reverts map vote to single method (#81539)

## About The Pull Request

Reverts map vote to single selection rather than multi selection

## Why It's Good For The Game

Now that map vote is weighted, multi selection serves no purpose anymore
other than allowing people to gain "additional weight" in the vote,
which is unfair. It's weighted, everyone should have 1 vote.


![image](https://github.com/tgstation/tgstation/assets/51863163/c1831505-f638-4036-8d53-d3524f4a5d4a)

## Changelog

:cl: Melbert
del: You can only vote for 1 map at a time again
/:cl:

* Reverts map vote to single method

* Update override

---------

Co-authored-by: NovaBot <[email protected]>
Co-authored-by: MrMelbert <[email protected]>
Co-authored-by: Mal <[email protected]>
  • Loading branch information
4 people authored Feb 19, 2024
1 parent 094e04f commit c0a8a6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion code/datums/votes/map_vote.dm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/datum/vote/map_vote
name = "Map"
message = "Vote for next round's map!"
count_method = VOTE_COUNT_METHOD_MULTI
count_method = VOTE_COUNT_METHOD_SINGLE
winner_method = VOTE_WINNER_METHOD_WEIGHTED_RANDOM

/datum/vote/map_vote/New()
Expand Down
1 change: 1 addition & 0 deletions modular_nova/master_files/code/datums/votes/map_vote.dm
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//Map votes shouldn't be using weighted random
/datum/vote/map_vote
count_method = VOTE_COUNT_METHOD_MULTI
winner_method = VOTE_WINNER_METHOD_SIMPLE

0 comments on commit c0a8a6e

Please sign in to comment.