mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-26 18:13:35 +00:00
Merge pull request #2191 from VOREStation/NIF_EXAMINE_FIX
Fixes NIF examine
This commit is contained in:
@@ -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
|
||||
message += "[src.nif_examine]\n"
|
||||
return message
|
||||
|
||||
Reference in New Issue
Block a user