Cancelling and Camfix (#670)

Fixes #123 
Resolves #125
This commit is contained in:
NanakoAC
2016-08-03 22:32:05 +03:00
committed by skull132
parent 1c4684b47d
commit d38e6d164f
4 changed files with 46 additions and 6 deletions
+2 -2
View File
@@ -35,7 +35,7 @@ mob/var/obj/effect/decal/typing_indicator
set_typing_indicator(1)
hud_typing = 1
var/message = input("","say (text)") as text
var/message = input("","say (text)") as text|null
hud_typing = 0
set_typing_indicator(0)
if(message)
@@ -47,7 +47,7 @@ mob/var/obj/effect/decal/typing_indicator
set_typing_indicator(1)
hud_typing = 1
var/message = input("","me (text)") as text
var/message = input("","me (text)") as text|null
hud_typing = 0
set_typing_indicator(0)
if(message)