From 0cd5efd1eb9d1a4187fed618ce085fa015f1ee24 Mon Sep 17 00:00:00 2001 From: Cameron653 Date: Sat, 23 Sep 2017 01:08:08 -0400 Subject: [PATCH] Fixes NIF examine Exactly what it says on the tin. --- code/modules/mob/living/carbon/human/examine_vr.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/examine_vr.dm b/code/modules/mob/living/carbon/human/examine_vr.dm index 16868827a79..342664f601a 100644 --- a/code/modules/mob/living/carbon/human/examine_vr.dm +++ b/code/modules/mob/living/carbon/human/examine_vr.dm @@ -156,8 +156,8 @@ /mob/living/carbon/human/proc/nif_examine(mob/living/carbon/human/H) var/message = "" - if(!H.nif || H.conceal_nif || !H.nif_examine) //Do they have a nif, do they have the NIF concealed, and do they have a NIF examine message? + if(!src.nif || src.conceal_nif || !src.nif_examine) //Do they have a nif, do they have the NIF concealed, and do they have a NIF examine message? return "" //If so, no message. else - message += "[H.nif_examine]\n" - return message \ No newline at end of file + message += "[src.nif_examine]\n" + return message