From 5f56a28a8a06eb365df7e93278d33c13c4f11c5a Mon Sep 17 00:00:00 2001 From: Bone White Date: Mon, 27 Oct 2014 02:24:06 +0000 Subject: [PATCH] Radiation Laser Update Hid message when missing. Added all medical jobs + brig phys to the requirement of jobs to purchase this traitor item. As requested by Fox. --- code/datums/uplink_item.dm | 11 ++++++----- code/modules/mob/living/carbon/human/human_defense.dm | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/code/datums/uplink_item.dm b/code/datums/uplink_item.dm index 104b29310c4..301cea307d2 100644 --- a/code/datums/uplink_item.dm +++ b/code/datums/uplink_item.dm @@ -155,11 +155,12 @@ var/list/uplink_items = list() job = list( "Chief Medical Officer", "Medical Doctor", - //"Geneticist", - //"Psychiatrist", - //"Chemist", - //"Paramedic", - "Virologist" + "Geneticist", + "Psychiatrist", + "Chemist", + "Paramedic", + "Virologist", + "Brig Physician" ) //Assistant diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index 03ad70ce3eb..aa97abc7111 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -191,7 +191,7 @@ emp_act if(user == src) // Attacking yourself can't miss target_zone = user.zone_sel.selecting - if(!target_zone && !src.stat) + if(!target_zone && !src.stat && !I.discrete) visible_message("\red [user] misses [src] with \the [I]!") return 0