diff --git a/code/game/machinery/firealarm.dm b/code/game/machinery/firealarm.dm index 22df37dca1b..ec97b4dd818 100644 --- a/code/game/machinery/firealarm.dm +++ b/code/game/machinery/firealarm.dm @@ -1,4 +1,4 @@ -#define FIREALARM_COOLDOWN 67 // Chosen fairly arbitrarily, it is the length of the audio in FireAlarm.ogg. The actual track length is 7 seconds 8ms but but the audio stops at 6s 700ms +#define FIREALARM_COOLDOWN 96 // This define is based on the current FireAlarm.ogg, and is placed to match the running time at 9 seconds 600 milliseconds (9.6 seconds) /obj/item/electronics/firealarm name = "fire alarm electronics" @@ -160,7 +160,7 @@ COOLDOWN_START(src, last_alarm, FIREALARM_COOLDOWN) var/area/area = get_area(src) area.firealert(src) - playsound(loc, 'goon/sound/machinery/FireAlarm.ogg', 75) + playsound(loc, 'sound/machines/FireAlarm.ogg', 96) if(user) log_game("[user] triggered a fire alarm at [COORD(src)]") diff --git a/code/modules/antagonists/traitor/equipment/Malf_Modules.dm b/code/modules/antagonists/traitor/equipment/Malf_Modules.dm index b8ac3adee01..4857b371825 100644 --- a/code/modules/antagonists/traitor/equipment/Malf_Modules.dm +++ b/code/modules/antagonists/traitor/equipment/Malf_Modules.dm @@ -688,7 +688,7 @@ GLOBAL_LIST_INIT(malf_modules, subtypesof(/datum/ai_module)) cost = 25 power_type = /datum/action/innate/ai/break_fire_alarms unlock_text = "You replace the thermal sensing capabilities of all fire alarms with a manual override, allowing you to turn them off at will." - unlock_sound = 'goon/sound/machinery/firealarm.ogg' + unlock_sound = 'sound/machines/FireAlarm.ogg' /datum/action/innate/ai/break_fire_alarms name = "Override Thermal Sensors" diff --git a/goon/sound/machinery/FireAlarm.ogg b/goon/sound/machinery/FireAlarm.ogg deleted file mode 100644 index f1a67232655..00000000000 Binary files a/goon/sound/machinery/FireAlarm.ogg and /dev/null differ diff --git a/sound/machines/FireAlarm.ogg b/sound/machines/FireAlarm.ogg new file mode 100644 index 00000000000..8887ceb1f23 Binary files /dev/null and b/sound/machines/FireAlarm.ogg differ