diff --git a/_build_dependencies.sh b/_build_dependencies.sh index 1c164d3035d..cb4d5346111 100644 --- a/_build_dependencies.sh +++ b/_build_dependencies.sh @@ -1,6 +1,6 @@ # This file has all the information on what versions of libraries are thrown into the code # For dreamchecker -export SPACEMANDMM_TAG=suite-1.4 +export SPACEMANDMM_TAG=suite-1.6 # For NanoUI + TGUI export NODE_VERSION=12 # For the scripts in tools diff --git a/code/modules/mob/typing_indicator.dm b/code/modules/mob/typing_indicator.dm index 4eee3653a9d..b7cd26cbfa6 100644 --- a/code/modules/mob/typing_indicator.dm +++ b/code/modules/mob/typing_indicator.dm @@ -1,9 +1,9 @@ #define TYPING_INDICATOR_LIFETIME 30 * 10 //grace period after which typing indicator disappears regardless of text in chatbar -mob/var/hud_typing = 0 //set when typing in an input window instead of chatline -mob/var/typing -mob/var/last_typed -mob/var/last_typed_time +/mob/var/hud_typing = 0 //set when typing in an input window instead of chatline +/mob/var/typing +/mob/var/last_typed +/mob/var/last_typed_time GLOBAL_LIST_EMPTY(typing_indicator)