Skip to content

Commit

Permalink
remove mind check
Browse files Browse the repository at this point in the history
  • Loading branch information
casperr04 committed Nov 14, 2023
1 parent a102c0b commit 82f5804
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/objects/items/fulton.dm
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ var/global/list/deployed_fultons = list()
var/mob/living/carbon/human/H = target_atom
if(isyautja(H) && H.stat == DEAD)
can_attach = TRUE
else if((H.stat != DEAD || H.mind && H.check_tod() && H.is_revivable()))
else if((H.stat != DEAD || H.check_tod() && H.is_revivable()))
to_chat(user, SPAN_WARNING("You can't attach [src] to [target_atom], they still have a chance!"))
return
else
Expand Down

0 comments on commit 82f5804

Please sign in to comment.