Merge pull request #2386 from Fox-McCloud/reagents-seeing

Reagent Scanner/Seeing
This commit is contained in:
TheDZD
2015-10-19 18:53:45 -04:00
11 changed files with 43 additions and 25 deletions
@@ -1819,4 +1819,9 @@
/mob/living/carbon/human/proc/get_full_print()
if(!dna || !dna.uni_identity)
return
return md5(dna.uni_identity)
return md5(dna.uni_identity)
/mob/living/carbon/human/can_see_reagents()
for(var/obj/item/clothing/C in src) //If they have some clothing equipped that lets them see reagents, they can see reagents
if(C.scan_reagents)
return 1
+6 -1
View File
@@ -1442,4 +1442,9 @@ mob/proc/yank_out_object()
M.pixel_y = initial(M.pixel_y)
/mob/proc/can_unbuckle(mob/user)
return 1
return 1
//Can the mob see reagents inside of containers?
/mob/proc/can_see_reagents()
return 0