This commit is contained in:
printer16
2017-03-04 17:12:05 -05:00
committed by skull132
parent 9931c46312
commit 44cb24e4cb

View File

@@ -111,6 +111,13 @@
return return
log_ability_use(user, "elite encryption hack (SUCCESS - title: [title])") log_ability_use(user, "elite encryption hack (SUCCESS - title: [title])")
command_announcement.Announce(text, title) command_announcement.Announce(text, title)
for (var/obj/machinery/computer/communications/C in machines)
if(! (C.stat & (BROKEN|NOPOWER) ) )
var/obj/item/weapon/paper/P = new /obj/item/weapon/paper( C.loc )
P.name = "[command_name()] Update"
P.info = replacetext(text, "\n", "<br/>")
P.update_space(P.info)
P.update_icon()
/datum/game_mode/malfunction/verb/elite_encryption_hack() /datum/game_mode/malfunction/verb/elite_encryption_hack()
set category = "Software" set category = "Software"