From e5d9d97e2a0bf0a6c7d6298d017d50eff06991f7 Mon Sep 17 00:00:00 2001 From: Leifa <26681464+TrickyLeifa@users.noreply.github.com> Date: Thu, 13 Aug 2026 12:30:45 +0200 Subject: [PATCH] Fix }}} bug preventing text render due to instant speed --- src/courtroom.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/courtroom.cpp b/src/courtroom.cpp index c0115a596..02fce53ae 100644 --- a/src/courtroom.cpp +++ b/src/courtroom.cpp @@ -4486,7 +4486,7 @@ void Courtroom::chat_tick() msg_delay = text_crawl * message_display_mult[current_display_speed]; } - if ((msg_delay <= 0 && tick_pos < f_message.size() - 1) || formatting_char) + if (!(tick_pos >= f_message.size()) && ((msg_delay <= 0 && tick_pos < f_message.size() - 1) || formatting_char)) { { chat_tick_timer->start(0); // Don't bother rendering anything out as we're