From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Wed, 14 May 2025 14:18:10 +0000 (+1000) Subject: Fix typingindicator doing a naughty (#37438) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=e5349e276fc4c22e33b915d9cd60fafab33322ba;p=space-station-14.git Fix typingindicator doing a naughty (#37438) How this wasn't caught before but raisepredictiveevent should never get raised when re-running states. --- diff --git a/Content.Client/Chat/TypingIndicator/TypingIndicatorSystem.cs b/Content.Client/Chat/TypingIndicator/TypingIndicatorSystem.cs index c126f08db1..be29bb2d6d 100644 --- a/Content.Client/Chat/TypingIndicator/TypingIndicatorSystem.cs +++ b/Content.Client/Chat/TypingIndicator/TypingIndicatorSystem.cs @@ -63,6 +63,9 @@ public sealed class TypingIndicatorSystem : SharedTypingIndicatorSystem { base.Update(frameTime); + if (!_time.IsFirstTimePredicted) + return; + // check if client didn't changed chat text box for a long time if (_isClientTyping) {