From a8193cb71d5c22b1c8c4d6581552912a57aabdcc Mon Sep 17 00:00:00 2001 From: LordME <58342752+TheLordME@users.noreply.github.com> Date: Mon, 16 Sep 2024 23:13:46 +0200 Subject: [PATCH] transfer vote ties now always extend and there is a message for randomly chosen results --- code/controllers/subsystem/vote.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index 4476ae56722..2d7e65e9f3e 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -113,7 +113,9 @@ SUBSYSTEM_DEF(vote) . = "Initiate Crew Transfer" if(2) . = CONFIG_GET(string/default_on_transfer_tie) - if(LAZYLEN(winners) > 0) + else if(LAZYLEN(winners) > 0) + if(LAZYLEN(winners) > 1) + text += "More than one winner, result chosen at random." . = pick(winners) text += "Vote Result: [.]" else