mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-16 10:35:41 +01:00
[no gbp] fixes blackboard speech error (#78551)
## About The Pull Request i changed initial to list() ## Why It's Good For The Game  ## Changelog i dont think runtimes are playerfacing --------- Co-authored-by: Zephyr <12817816+ZephyrTFA@users.noreply.github.com>
This commit is contained in:
@@ -208,10 +208,10 @@
|
||||
if(isnull(speech_lines))
|
||||
return ..()
|
||||
|
||||
speak = speech_lines[BB_EMOTE_SAY] ? speech_lines[BB_EMOTE_SAY] : initial(speak)
|
||||
emote_see = speech_lines[BB_EMOTE_SEE] ? speech_lines[BB_EMOTE_SEE] : initial(emote_see)
|
||||
emote_hear = speech_lines[BB_EMOTE_HEAR] ? speech_lines[BB_EMOTE_HEAR] : initial(emote_hear)
|
||||
sound = speech_lines[BB_EMOTE_SOUND] ? speech_lines[BB_EMOTE_SOUND] : initial(sound)
|
||||
speak = speech_lines[BB_EMOTE_SAY] || list()
|
||||
emote_see = speech_lines[BB_EMOTE_SEE] || list()
|
||||
emote_hear = speech_lines[BB_EMOTE_HEAR] || list()
|
||||
sound = speech_lines[BB_EMOTE_SOUND] || list()
|
||||
speech_chance = speech_lines[BB_EMOTE_CHANCE] ? speech_lines[BB_EMOTE_CHANCE] : initial(speech_chance)
|
||||
|
||||
return ..()
|
||||
|
||||
Reference in New Issue
Block a user