From 0a4a5d2afd8db60a52cd227e25df9066da32a57e Mon Sep 17 00:00:00 2001 From: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> Date: Mon, 30 May 2022 15:05:59 -0400 Subject: [PATCH] Fixes map votes not happening when the ALLOW_MAP_VOTING config flag was disabled (#67394) Fixes map votes not happening when allow map voting was disabled by config --- code/controllers/subsystem/mapping.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/mapping.dm b/code/controllers/subsystem/mapping.dm index 83ccf517d16..16dc37b6a19 100644 --- a/code/controllers/subsystem/mapping.dm +++ b/code/controllers/subsystem/mapping.dm @@ -392,7 +392,7 @@ GLOBAL_LIST_EMPTY(the_station_areas) if(SSvote.current_vote) //Theres already a vote running, default to rotation. maprotate() return - SSvote.initiate_vote(/datum/vote/map_vote, "automatic map rotation") + SSvote.initiate_vote(/datum/vote/map_vote, "automatic map rotation", forced = TRUE) /datum/controller/subsystem/mapping/proc/changemap(datum/map_config/change_to) if(!change_to.MakeNextMap())