From be5d02cbf3511d553ef2da227887ccae32667423 Mon Sep 17 00:00:00 2001 From: Vincent Cunningham Date: Fri, 2 Jan 2026 16:53:06 -0500 Subject: [PATCH] Exclude long recording scarecrow message ID from instant text speed-up check --- Messages.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Messages.py b/Messages.py index b6f35f8a2..61613bd18 100644 --- a/Messages.py +++ b/Messages.py @@ -818,7 +818,9 @@ def transform(self, replace_ending: bool = False, ending: Optional[TextCode] = N instant_text_code = TextCode(0x08, 0) # # speed the text - if speed_up_text: + if (speed_up_text + and self.id != 0x4078 # long recording scarecrow message after playback + ): text_codes.append(instant_text_code) # allow instant # write the message