Skip to content

Commit

Permalink
Switches gamemode restart logic a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorDinamit committed Feb 9, 2024
1 parent fbfb21a commit ac5925a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/controllers/subsystems/ticker.dm
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ Helpers
*/

/datum/controller/subsystem/ticker/proc/choose_gamemode()
. = (revotes_allowed && !bypass_gamemode_vote) ? CHOOSE_GAMEMODE_REVOTE : CHOOSE_GAMEMODE_RESTART
. = (!revotes_allowed && !bypass_gamemode_vote) ? CHOOSE_GAMEMODE_RESTART : CHOOSE_GAMEMODE_REVOTE

var/mode_to_try = master_mode //This is the config tag
var/datum/game_mode/mode_datum
Expand Down

0 comments on commit ac5925a

Please sign in to comment.