Fixes runtimes, the prescription glasses work properly, now.

This commit is contained in:
SkyMarshal
2012-02-18 14:22:30 -07:00
parent 73b96aba6c
commit f3ce349e5d
3 changed files with 14 additions and 10 deletions

View File

@@ -872,8 +872,9 @@
/client/proc/radioalert()
set category = "Fun"
set name = "Create Radio Alert"
var/message = input("Choose a message! (Don't forget the \"says, \" or similar at the start.)", "Message") as message|null
var/message = input("Choose a message! (Don't forget the \"says, \" or similar at the start.)", "Message") as text|null
var/from = input("From whom? (Who's saying this?)", "From") as text|null
var/obj/item/device/radio/intercom/a = new /obj/item/device/radio/intercom(null)
a.autosay(message,from)
del(a)
if(message && from)
var/obj/item/device/radio/intercom/a = new /obj/item/device/radio/intercom(null)
a.autosay(message,from)
del(a)