added input cancelling to pda msg, chemmaster ops, borg mod selection

This commit is contained in:
Tastyfish
2015-11-30 01:06:21 -05:00
parent 1627c6b124
commit b2abdd34c1
4 changed files with 38 additions and 13 deletions
+3 -1
View File
@@ -849,7 +849,9 @@ var/global/list/obj/item/device/pda/PDAs = list()
/obj/item/device/pda/proc/create_message(var/mob/living/U = usr, var/obj/item/device/pda/P)
var/t = input(U, "Please enter message", name, null) as text
var/t = input(U, "Please enter message", name, null) as text|null
if(!t)
return
t = sanitize(copytext(t, 1, MAX_MESSAGE_LEN))
t = readd_quotes(t)
if (!t || !istype(P))