From d58ef35b6fbd545c30849af9742a8773b8b28782 Mon Sep 17 00:00:00 2001 From: Chinsky Date: Sun, 17 Mar 2013 04:41:42 +0400 Subject: [PATCH] Made vote play alarm sound when started. --- code/controllers/voting.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/controllers/voting.dm b/code/controllers/voting.dm index 14f35c3e45..a47721d904 100644 --- a/code/controllers/voting.dm +++ b/code/controllers/voting.dm @@ -196,6 +196,7 @@ datum/controller/vote text += "\n[question]" log_vote(text) world << "[text]\nType vote to place your votes.\nYou have [config.vote_period/10] seconds to vote." + world << sound('misc/bloblarm.ogg') time_remaining = round(config.vote_period/10) return 1 return 0