mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-28 15:48:49 +01:00
[MIRROR] Split NO_SCAN into two flags (#10420)
Co-authored-by: Cameron Lennox <killer65311@gmail.com>
This commit is contained in:
co-authored by
Cameron Lennox
parent
f862d60640
commit
15a65537e9
@@ -615,7 +615,7 @@
|
||||
H.b_hair = max(0, min(255, H.b_hair + color_shift))
|
||||
if(H.b_facial)
|
||||
H.b_facial = max(0, min(255, H.b_facial + color_shift))
|
||||
if(H.species.flags & NO_SCAN)
|
||||
if(H.species.flags & NO_DNA)
|
||||
return
|
||||
|
||||
//The original coder comment here wanted it to be "Approx. one mutation per 10 injected/20 ingested/30 touching units"
|
||||
@@ -887,7 +887,7 @@
|
||||
return
|
||||
|
||||
var/mob/living/carbon/human/H = M
|
||||
if(istype(H) && (H.species.flags & NO_SCAN))
|
||||
if(istype(H) && (H.species.flags & NO_DNA))
|
||||
return
|
||||
|
||||
if(M.dna)
|
||||
@@ -913,7 +913,7 @@
|
||||
return
|
||||
|
||||
var/mob/living/carbon/human/H = M
|
||||
if(istype(H) && (H.species.flags & NO_SCAN))
|
||||
if(istype(H) && (H.species.flags & NO_DNA))
|
||||
return
|
||||
|
||||
if(M.dna)
|
||||
|
||||
Reference in New Issue
Block a user