Skip to content

Commit

Permalink
fix2
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCastmer committed Aug 17, 2024
1 parent b30ad3b commit 90d6826
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,13 +134,13 @@
qdel(src)
return TRUE

var/obj/item/implant/I in target.implants
if(istype(I, /obj/item/implant/mindshield))
target.visible_message(span_warning("[target] seems to resist the implant!"), span_warning("You feel something interfering with your curent mental conditioning! YOUR BRAIN... AGGH!!"))
if(istype(target, mob/living/carbon/human))
traumatize(target)
qdel(src)
return TRUE
for(var/obj/item/implant/I in target.implants)
if(istype(I, /obj/item/implant/mindshield))
target.visible_message(span_warning("[target] seems to resist the implant!"), span_warning("You feel something interfering with your curent mental conditioning! YOUR BRAIN... AGGH!!"))
if(istype(target, /mob/living/carbon/human))
traumatize(target)
qdel(src)
return TRUE

if(target.mind.has_antag_datum(/datum/antagonist/brainwashed))
target.mind.remove_antag_datum(/datum/antagonist/brainwashed)
Expand Down

0 comments on commit 90d6826

Please sign in to comment.