Merge pull request #11026 from farie82/popup-limiting

Gives the option to limit the text popups to 1
This commit is contained in:
variableundefined
2019-04-07 20:41:24 +08:00
committed by GitHub
7 changed files with 63 additions and 23 deletions
+3 -2
View File
@@ -39,7 +39,7 @@ var/global/image/typing_indicator
set_typing_indicator(1)
hud_typing = 1
var/message = input("","say (text)") as null|text
var/message = typing_input(src, "", "say (text)")
hud_typing = 0
set_typing_indicator(0)
if(message)
@@ -49,9 +49,10 @@ var/global/image/typing_indicator
set name = ".Me"
set hidden = 1
set_typing_indicator(1)
hud_typing = 1
var/message = input("","me (text)") as null|text
var/message = typing_input(src, "", "me (text)")
hud_typing = 0
set_typing_indicator(0)
if(message)