Skip to content

Commit

Permalink
fix tts reserving channels
Browse files Browse the repository at this point in the history
  • Loading branch information
larentoun committed Jul 13, 2024
1 parent 4070e8f commit eeabd6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modular_bandastation/tts/code/tts_subsystem.dm
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ SUBSYSTEM_DEF(tts220)
/datum/controller/subsystem/tts220/proc/get_local_channel_by_owner(owner)
var/channel = tts_local_channels_by_owner[owner]
if(isnull(channel))
channel = SSsounds.reserve_sound_channel()
channel = SSsounds.reserve_sound_channel(owner)
tts_local_channels_by_owner[owner] = channel
RegisterSignal(owner, COMSIG_QDELETING, PROC_REF(clear_channel))
return channel
Expand Down

0 comments on commit eeabd6b

Please sign in to comment.