mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-14 00:26:02 +01:00
Split NO_SCAN into two flags (#17226)
* Split NO_SCAN into two flags * traits * species flags applied correctly by traits * fixed species flag toggling for traits * bold of you --------- Co-authored-by: Willburd <7099514+Willburd@users.noreply.github.com>
This commit is contained in:
@@ -652,7 +652,7 @@
|
||||
if(Tar.nif)
|
||||
to_chat(user,span_warning("Target already has a NIF."))
|
||||
return
|
||||
if(Tar.species.flags & NO_SCAN)
|
||||
if(Tar.species.flags & NO_DNA)
|
||||
var/obj/item/nif/S = /obj/item/nif/bioadap
|
||||
input_NIF = initial(S.name)
|
||||
new /obj/item/nif/bioadap(Tar)
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
to_chat(usr,span_warning("Target already has a NIF."))
|
||||
return
|
||||
|
||||
if(H.species.flags & NO_SCAN)
|
||||
if(H.species.flags & NO_DNA)
|
||||
var/obj/item/nif/S = /obj/item/nif/bioadap
|
||||
input_NIF = initial(S.name)
|
||||
new /obj/item/nif/bioadap(H)
|
||||
|
||||
Reference in New Issue
Block a user