diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index b6d4001c1a8..8d2c8bdd2b6 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -279,6 +279,8 @@ SUBSYSTEM_DEF(vote) else if(next_gamemode.blacklist_ground_maps) //can't blacklist and whitelist for the same map if(VM.map_name in next_gamemode.blacklist_ground_maps) continue + if(VM.map_name == SSmapping.configs[GROUND_MAP].map_name) // so the ground map changes guarantilly + continue if(VM.config_max_users || VM.config_min_users) var/players = length(GLOB.clients) if(VM.config_max_users && players > VM.config_max_users)