mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-11 18:22:14 +00:00
feedback it isFeedback for mutations deactivating from losing limbs (#58687)
This commit is contained in:
@@ -121,9 +121,10 @@
|
|||||||
if(!special)
|
if(!special)
|
||||||
if(phantom_owner.dna)
|
if(phantom_owner.dna)
|
||||||
for(var/X in phantom_owner.dna.mutations) //some mutations require having specific limbs to be kept.
|
for(var/X in phantom_owner.dna.mutations) //some mutations require having specific limbs to be kept.
|
||||||
var/datum/mutation/human/MT = X
|
var/datum/mutation/human/mutation = X
|
||||||
if(MT.limb_req && MT.limb_req == body_zone)
|
if(mutation.limb_req && mutation.limb_req == body_zone)
|
||||||
phantom_owner.dna.force_lose(MT)
|
to_chat(phantom_owner, "<span class='warning'>You feel your [mutation] deactivating from the loss of your [body_zone]!</span>")
|
||||||
|
phantom_owner.dna.force_lose(mutation)
|
||||||
|
|
||||||
for(var/X in phantom_owner.internal_organs) //internal organs inside the dismembered limb are dropped.
|
for(var/X in phantom_owner.internal_organs) //internal organs inside the dismembered limb are dropped.
|
||||||
var/obj/item/organ/O = X
|
var/obj/item/organ/O = X
|
||||||
|
|||||||
Reference in New Issue
Block a user