diff --git a/code/controllers/shuttle_controller.dm b/code/controllers/shuttle_controller.dm index 0da105d11b0..0fe61bd8000 100644 --- a/code/controllers/shuttle_controller.dm +++ b/code/controllers/shuttle_controller.dm @@ -203,27 +203,27 @@ datum/emergency_shuttle/proc/hyperspace_sounds(var/phase) if(M && M.client) var/turf/M_turf = get_turf(M) if (M_turf.z == shuttle.dock_station.z) - M.playsound_local(shuttle.dock_station, 'sound/machines/hyperspace_end.ogg', 100 - (get_dist(shuttle.dock_station,M_turf)*2), 1, frequency, falloff = 5) + M.playsound_local(shuttle.dock_station, 'sound/machines/hyperspace_end.ogg', 75 - (get_dist(shuttle.dock_station,M_turf)*2), 1, frequency, falloff = 5) if ("begin") for (var/mob/M in player_list) if(M && M.client) var/turf/M_turf = get_turf(M) if (M_turf.z == shuttle.dock_station.z) - M.playsound_local(shuttle.dock_station, 'sound/machines/hyperspace_begin.ogg', 100 - (get_dist(shuttle.dock_station,M_turf)*2), 1, frequency, falloff = 5) + M.playsound_local(shuttle.dock_station, 'sound/machines/hyperspace_begin.ogg', 75 - (get_dist(shuttle.dock_station,M_turf)*2), 1, frequency, falloff = 5) if ("progression") for (var/mob/M in player_list) if(M && M.client) var/turf/M_turf = get_turf(M) if (M_turf.z == shuttle.linked_port.z) - M.playsound_local(shuttle.linked_port, 'sound/machines/hyperspace_progress.ogg', 100 - (get_dist(shuttle.linked_port,M_turf)*2), 1, frequency, falloff = 5) + M.playsound_local(shuttle.linked_port, 'sound/machines/hyperspace_progress.ogg', 75 - (get_dist(shuttle.linked_port,M_turf)*2), 1, frequency, falloff = 5) if ("end") for (var/mob/M in player_list) if(M && M.client) var/turf/M_turf = get_turf(M) if (M_turf.z == shuttle.linked_port.z) - M.playsound_local(shuttle.linked_port, 'sound/machines/hyperspace_end.ogg', 100 - (get_dist(shuttle.linked_port,M_turf)*2), 1, frequency, falloff = 5) + M.playsound_local(shuttle.linked_port, 'sound/machines/hyperspace_end.ogg', 75 - (get_dist(shuttle.linked_port,M_turf)*2), 1, frequency, falloff = 5) if (M_turf.z == shuttle.dock_centcom.z) - M.playsound_local(shuttle.dock_centcom, 'sound/machines/hyperspace_end.ogg', 100 - (get_dist(shuttle.dock_centcom,M_turf)*2), 1, frequency, falloff = 5) + M.playsound_local(shuttle.dock_centcom, 'sound/machines/hyperspace_end.ogg', 75 - (get_dist(shuttle.dock_centcom,M_turf)*2), 1, frequency, falloff = 5) datum/emergency_shuttle/proc/shuttle_phase(var/phase, var/casual = 1) switch (phase)