[MIRROR] Fixes the typing indicator [MDB IGNORE] (#25475)

* Fixes the typing indicator (#80153)

## About The Pull Request
It was very specifically broken by [this
commit](https://github.com/tgstation/tgstation/pull/80122/commits/94d00aa526f31ed0bc8357f060d2c190d2ad87c7),
because it wrongfully changed the logic. Now the typing indicator is
back, it's no longer just the thinking indicator.

## Why It's Good For The Game
Typing indicator is meant to be there, now it's back! No more awkward
flickering!

## Changelog

🆑 GoldenAlpharex
fix: The typing indicator has overcome its shyness and is now back to
its usual form.
/🆑

* Fixes the typing indicator

---------

Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com>
This commit is contained in:
SkyratBot
2023-12-06 22:00:24 -05:00
committed by GitHub
co-authored by GoldenAlpharex
parent 164edf5fa0
commit 535a6859a7
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -84,7 +84,6 @@
play_fov_effect(src, 6, "talk", ignore_self = TRUE)
/mob/living/remove_thinking_indicator()
REMOVE_TRAIT(src, TRAIT_THINKING_IN_CHARACTER, CURRENTLY_TYPING_TRAIT)
if(!active_thinking_indicator)
return FALSE
cut_overlay(active_thinking_indicator)
@@ -104,6 +103,7 @@
active_typing_indicator = null
/mob/living/remove_all_indicators()
REMOVE_TRAIT(src, TRAIT_THINKING_IN_CHARACTER, CURRENTLY_TYPING_TRAIT)
remove_thinking_indicator()
remove_typing_indicator()