diff --git a/code/defines/obj/weapon.dm b/code/defines/obj/weapon.dm index fe837cd6550..9788f5eb773 100644 --- a/code/defines/obj/weapon.dm +++ b/code/defines/obj/weapon.dm @@ -458,7 +458,7 @@ var/registered = null var/assignment = null var/obj/item/weapon/photo/PHOTO = null - var/over = 1 + var/over_jumpsuit = 1 // If set to 0, it won't display on top of the mob's jumpsuit /obj/item/weapon/card/id/gold name = "identification card" diff --git a/code/game/objects/devices/PDA/PDA.dm b/code/game/objects/devices/PDA/PDA.dm index 39b737f15f7..5ea474c7229 100644 --- a/code/game/objects/devices/PDA/PDA.dm +++ b/code/game/objects/devices/PDA/PDA.dm @@ -30,6 +30,7 @@ var/mimeamt = 0 //How many silence left when infected with mime.exe var/note = "Congratulations, your station has chosen the Thinktronic 5230 Personal Data Assistant!" //Current note in the notepad function. var/cart = "" //A place to stick cartridge menu information + var/over_jumpsuit = 1 // If set to 0, it won't display on top of the mob's jumpsuit var/obj/item/weapon/integrated_uplink/uplink = null diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index e7bc2057f6b..a966a010c84 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -701,7 +701,7 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that W.access += list("VIP Guest","Custodian","Thunderdome Overseer","Intel Officer","Medical Officer","Death Commando","Research Officer") W.assignment = "CentCom Review Official" W.registered = M.real_name - W.over = 0 + W.over_jumpsuit = 0 M.equip_if_possible(W, M.slot_wear_id) if("centcom commander") @@ -726,7 +726,7 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that W.access += get_all_centcom_access() W.assignment = "CentCom Commanding Officer" W.registered = M.real_name - W.over = 0 + W.over_jumpsuit = 0 M.equip_if_possible(W, M.slot_wear_id) if("special ops officer") diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index fbb975a0982..7ee57fc6872 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -880,7 +880,7 @@ overlays += image("icon" = stain_icon, "layer" = MOB_LAYER) if (wear_id) - if(wear_id.over) + if(wear_id.over_jumpsuit) overlays += image("icon" = 'mob.dmi', "icon_state" = "id[!lying ? null : "2"]", "layer" = MOB_LAYER) if (client)