Reduces the command report sound to 60% of its current full volume
This commit is contained in:
clusterfack
2016-01-25 21:58:04 -06:00
parent 13ff607beb
commit 8df7da9433
4 changed files with 4 additions and 4 deletions

View File

@@ -298,7 +298,7 @@
spawn(rand(300, 600)) //Delayed announcements to keep the crew on their toes.
command_alert("Unknown biological entities have been detected near [station_name()], please stand-by.", "Lifesign Alert")
for(var/mob/M in player_list)
if(M.client) M << sound('sound/AI/commandreport.ogg')
if(M.client) M << sound('sound/AI/commandreport.ogg', volume = 60)
/proc/lightsout(isEvent = 0, lightsoutAmount = 1,lightsoutRange = 25) //leave lightsoutAmount as 0 to break ALL lights
if(isEvent)

View File

@@ -225,7 +225,7 @@
comm.messagetitle.Add("[command_name()] Status Summary")
comm.messagetext.Add(intercepttext)
world << sound('sound/AI/commandreport.ogg')
world << sound('sound/AI/commandreport.ogg', volume = 60)
command_alert("Summary downloaded and printed out at all communications consoles.", "Enemy communication intercept.")
/* for(var/mob/M in player_list)

View File

@@ -2713,7 +2713,7 @@
W.req_access = list()
message_admins("[key_name_admin(usr)] activated Egalitarian Station mode")
command_alert("Centcomm airlock control override activated. Please take this time to get acquainted with your coworkers.")
to_chat(world, sound('sound/AI/commandreport.ogg'))
to_chat(world, sound('sound/AI/commandreport.ogg', volume = 60))
if("dorf")
feedback_inc("admin_secrets_fun_used",1)
feedback_add_details("admin_secrets_fun_used","DF")

View File

@@ -618,7 +618,7 @@ Traitors and the like can also be revived with the previous role mostly intact.
if("No")
to_chat(world, "<span class='warning'>New NanoTrasen Update available at all communication consoles.</span>")
to_chat(world, sound('sound/AI/commandreport.ogg'))
to_chat(world, sound('sound/AI/commandreport.ogg', volume = 60))
log_admin("[key_name(src)] has created a command report: [input]")
message_admins("[key_name_admin(src)] has created a command report", 1)
feedback_add_details("admin_verb","CCR") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!