From c0a8a6e5de67580281dccbcebcc12589efb9943c Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Mon, 19 Feb 2024 21:04:19 +0300 Subject: [PATCH] [MIRROR] Reverts map vote to single method (#2056) * 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 <154629622+NovaBot13@users.noreply.github.com> Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Co-authored-by: Mal <13398309+vinylspiders@users.noreply.github.com> --- code/datums/votes/map_vote.dm | 2 +- modular_nova/master_files/code/datums/votes/map_vote.dm | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/code/datums/votes/map_vote.dm b/code/datums/votes/map_vote.dm index e30451c5d5e..f50c43d6c52 100644 --- a/code/datums/votes/map_vote.dm +++ b/code/datums/votes/map_vote.dm @@ -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() diff --git a/modular_nova/master_files/code/datums/votes/map_vote.dm b/modular_nova/master_files/code/datums/votes/map_vote.dm index 10dea54b2fd..83406324428 100644 --- a/modular_nova/master_files/code/datums/votes/map_vote.dm +++ b/modular_nova/master_files/code/datums/votes/map_vote.dm @@ -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