diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index 97cb73e7ffa27..9e7c080806400 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -341,16 +341,16 @@ SUBSYSTEM_DEF(vote) CONFIG_SET(flag/allow_vote_map, !CONFIG_GET(flag/allow_vote_map)) if("restart") if(CONFIG_GET(flag/allow_vote_restart) || usr.client.holder) - initiate_vote("restart",usr.key) + initiate_vote("restart", usr.key, forced=TRUE, popup=TRUE) if("gamemode") if(CONFIG_GET(flag/allow_vote_mode) || usr.client.holder) - initiate_vote("gamemode",usr.key) + initiate_vote("gamemode", usr.key, forced=TRUE, popup=TRUE) if("map") if(CONFIG_GET(flag/allow_vote_map) || usr.client.holder) - initiate_vote("map",usr.key) + initiate_vote("map", usr.key, forced=TRUE, popup=TRUE) if("custom") if(usr.client.holder) - initiate_vote("custom",usr.key) + initiate_vote("custom", usr.key, forced=TRUE, popup=TRUE) if("vote") submit_vote(round(text2num(params["index"]))) return TRUE