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