makes first say follow volume (#18217)

This commit is contained in:
Cameron Lennox
2025-08-09 08:09:36 -04:00
committed by GitHub
parent 17e9dc1d80
commit a3cfdc5301
+1 -1
View File
@@ -458,7 +458,7 @@ var/list/channel_to_radio_key = list()
/mob/living/proc/blooploop(message, extrarange = 0, volume, sound_preference = /datum/preference/toggle/say_sounds, bloop_preference = /datum/preference/toggle/bloop_sounds)
var/bloopers = min(round((LAZYLEN(message) / BLOOPER_SPEED)) + 1, BLOOPER_MAX_BLOOPERS)
var/total_delay
playsound(src, pick(voice_sounds_list), 75, TRUE, extrarange = extrarange, falloff = 1 , is_global = TRUE, frequency = voice_freq > 0 ? voice_freq : null, ignore_walls = FALSE, preference = sound_preference)
playsound(src, pick(voice_sounds_list), volume, TRUE, extrarange = extrarange, falloff = 1 , is_global = TRUE, frequency = voice_freq > 0 ? voice_freq : null, ignore_walls = FALSE, preference = sound_preference)
for(var/i in 1 to bloopers)
if(total_delay > BLOOPER_MAX_TIME)
break