Skip to content

Commit

Permalink
Tweak: allow vote for all maps
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimach committed Jul 26, 2023
1 parent 2a33032 commit 83e1c03
Showing 1 changed file with 1 addition 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
Expand Up @@ -12,7 +12,7 @@
var/list/maps = shuffle(global.config.maplist)
for(var/map in maps)
var/datum/map_config/possible_config = config.maplist[map]
if(!possible_config.votable || (possible_config.map_name in SSpersistence.blocked_maps) || possible_config.map_name == SSmapping.config?.map_name) // SKYRAT EDIT - Can't vote for the current map
if(!possible_config.votable) // EDIT - Allow vote for all maps
continue

default_choices += possible_config.map_name
Expand Down

0 comments on commit 83e1c03

Please sign in to comment.