Upload files

This commit is contained in:
SandPoot
2021-10-05 00:33:49 -03:00
parent 2de686f4d6
commit bbe32fa38a
156 changed files with 830 additions and 413 deletions
+2 -2
View File
@@ -5,7 +5,7 @@
set hidden = TRUE
set category = "IC"
display_typing_indicator()
var/message = input(usr, "", "say") as text|null
var/message = tgui_input_text(usr, null, "say")
// If they don't type anything just drop the message.
clear_typing_indicator() // clear it immediately!
if(!length(message))
@@ -28,7 +28,7 @@
set hidden = TRUE
set category = "IC"
display_typing_indicator()
var/message = input(usr, "", "me") as message|null
var/message = tgui_input_message(usr, null, "me")
// If they don't type anything just drop the message.
clear_typing_indicator() // clear it immediately!
if(!length(message))