Replace/Add lots of sounds from VerySoft

This commit is contained in:
Aronai Sieyes
2020-05-05 22:43:31 -04:00
parent 586dcad6a1
commit f4c8a7e2f5
41 changed files with 46 additions and 31 deletions
+9 -1
View File
@@ -28,7 +28,15 @@ SUBSYSTEM_DEF(nightshift)
var/announce_z
if(using_map.station_levels.len)
announce_z = pick(using_map.station_levels)
priority_announcement.Announce(message, new_title = "Automated Lighting System Announcement", new_sound = 'sound/misc/notice2.ogg', zlevel = announce_z)
//VOREStation Edit - TTS
var/pickedsound
if(!high_security_mode)
if(nightshift_active)
pickedsound = 'sound/AI/dim_lights.ogg'
else
pickedsound = 'sound/AI/bright_lights.ogg'
priority_announcement.Announce(message, new_title = "Automated Lighting System Announcement", new_sound = pickedsound, zlevel = announce_z)
//VOREStation Edit End
/datum/controller/subsystem/nightshift/proc/check_nightshift(check_canfire=FALSE) //This is called from elsewhere, like setting the alert levels
if(check_canfire && !can_fire)