mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
Fix #6868
Reduces the command report sound to 60% of its current full volume
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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")
|
||||
|
||||
@@ -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!
|
||||
|
||||
Reference in New Issue
Block a user