mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
@@ -1546,7 +1546,7 @@
|
|||||||
return
|
return
|
||||||
if(href_list["dna_lock"])
|
if(href_list["dna_lock"])
|
||||||
if(usr != src.occupant) return
|
if(usr != src.occupant) return
|
||||||
if(src.occupant)
|
if(src.occupant && (!istype(src, /obj/item/device/mmi/posibrain) || !istype(src, /obj/item/device/mmi)))
|
||||||
src.dna = src.occupant.dna.unique_enzymes
|
src.dna = src.occupant.dna.unique_enzymes
|
||||||
src.occupant_message("You feel a prick as the needle takes your DNA sample.")
|
src.occupant_message("You feel a prick as the needle takes your DNA sample.")
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -93,6 +93,8 @@ var/datum/paiController/paiController // Global handler for pAI candidates
|
|||||||
proc/recruitWindow(var/mob/M as mob)
|
proc/recruitWindow(var/mob/M as mob)
|
||||||
var/datum/paiCandidate/candidate
|
var/datum/paiCandidate/candidate
|
||||||
for(var/datum/paiCandidate/c in pai_candidates)
|
for(var/datum/paiCandidate/c in pai_candidates)
|
||||||
|
if(!istype(c) || !istype(M))
|
||||||
|
break
|
||||||
if(c.key == M.key)
|
if(c.key == M.key)
|
||||||
candidate = c
|
candidate = c
|
||||||
if(!candidate)
|
if(!candidate)
|
||||||
|
|||||||
Reference in New Issue
Block a user