Fixes Poly not saving data between shifts (#79922)

## About The Pull Request

Screwup in #79762 (b251b9dbb0)

This definitely worked two months ago I have no clue when this check got
swapped around.

## Changelog
🆑
fix: Poly should now remember phrases between shifts.
/🆑
This commit is contained in:
san7890
2023-11-26 17:42:29 +01:00
committed by GitHub
parent de2c9a78d2
commit 3e82c97a8b
+1 -1
View File
@@ -74,7 +74,7 @@
SIGNAL_HANDLER
var/atom/movable/atom_source = source
var/datum/ai_controller/controller = atom_source.ai_controller
if(LAZYLEN(speech_buffer)) // what? well whatever let's just move on
if(!LAZYLEN(speech_buffer)) // what? well whatever let's just move on
return
controller.set_blackboard_key(BB_EXPORTABLE_STRING_BUFFER_LIST, speech_buffer.Copy())