From 7efa3b38fe5f2255f41509dabaa2c1a0cc7a7c6f Mon Sep 17 00:00:00 2001 From: CIB Date: Sun, 8 Jul 2012 00:13:26 +0300 Subject: [PATCH] Automatic votes default to "none" now, but I added some extra info to the announcement. --- code/game/vote.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/game/vote.dm b/code/game/vote.dm index 4ec854055f6..a798a3e5f04 100644 --- a/code/game/vote.dm +++ b/code/game/vote.dm @@ -466,7 +466,8 @@ proc/automatic_crew_shuttle_vote() vote.endvote() world << "\red*** An *automatic* vote to call the crew transfer shuttle has been initiated." - world << "\red You have [vote.timetext(config.vote_period)] to vote. Note that your vote defaults to *yes*." + world << "\red You have [vote.timetext(config.vote_period)] to vote." + world << "\red*** Please make sure to only vote 'no' if you yourself are currently enjoying the round. If you find the round to have gone stale, you should always vote 'yes', regardless of how others are feeling about the round." log_vote("Automatic vote to call the crew transfer shuttle.") @@ -475,6 +476,6 @@ proc/automatic_crew_shuttle_vote() if( !CM.is_player_active() ) CM.client.vote = "none" else - CM.client.vote = "restart" + CM.client.vote = "none" return \ No newline at end of file