Skip to content

Commit

Permalink
voice fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Furrior committed Oct 15, 2023
1 parent d65a1c9 commit e87f90b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions code/modules/mob/new_player/new_player.dm
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@
ready = FALSE
return FALSE

check_tts_seed_ready() // SS220 ADDITION
if(!check_tts_seed_ready()) // SS220 ADDITION
return FALSE

ready = !ready
new_player_panel_proc()
Expand Down Expand Up @@ -231,7 +232,8 @@
to_chat(src, alert("You are currently not whitelisted to play [client.prefs.active_character.species]."))
return FALSE

check_tts_seed_ready()
if(!check_tts_seed_ready()) // SS220 ADDITION
return FALSE

LateChoices()

Expand Down
1 change: 1 addition & 0 deletions modular_ss220/text_to_speech/code/tts_preferences.dm
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,4 @@
to_chat(usr, span_danger("Выбранный голос персонажа более недоступен на текущем уровне подписки!"))
client.prefs.ShowChoices(src)
return FALSE
return TRUE

0 comments on commit e87f90b

Please sign in to comment.