From 15a014d3997ae95cbb814635a7e0ad65dec1f6e1 Mon Sep 17 00:00:00 2001 From: Xhuis Date: Fri, 25 Aug 2017 15:57:41 -0400 Subject: [PATCH] :100: --- code/modules/admin/verbs/playsound.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/verbs/playsound.dm b/code/modules/admin/verbs/playsound.dm index d1c8bddb307..84a29d9c011 100644 --- a/code/modules/admin/verbs/playsound.dm +++ b/code/modules/admin/verbs/playsound.dm @@ -9,7 +9,7 @@ freq = pick(0.5, 0.7, 0.8, 0.85, 0.9, 0.95, 1.1, 1.2, 1.4, 1.6, 2.0, 2.5) to_chat(src, "You feel the Honkmother messing with your song...") - var/vol = input(usr, "What volume would you like the sound to play at?",,) as null|num + var/vol = input(usr, "What volume would you like the sound to play at?",, 100) as null|num if(!vol) return vol = Clamp(vol, 1, 100)