Skip to content

Commit

Permalink
Revert "Fix BioReactor Respawn Reward"
Browse files Browse the repository at this point in the history
This reverts commit 27daf85.
  • Loading branch information
Mycah142 committed Oct 31, 2023
1 parent f118382 commit ca14787
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions code/modules/biomatter_manipulation/bioreactor/platform.dm
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,8 @@
organ.forceMove(get_turf(neighbor_platform))
organ.removed()
continue
if(istype(object, /obj/item/organ/internal/vital/brain))
var/obj/item/organ/internal/vital/brain/B = object
if(B.brainmob && B.brainmob.mind && B.brainmob.mind.key)
var/mob/M = key2mob(B.brainmob.mind.key)
if(H && H.mind && H.mind.key && H.stat == DEAD)
var/mob/M = key2mob(H.mind.key)
to_chat(M, SPAN_NOTICE("Your remains have been dissolved and reused. Your crew respawn time is reduced by [(BIOREACTOR_RESPAWN_BONUS)/600] minutes."))
M << 'sound/effects/magic/blind.ogg' //Play this sound to a player whenever their respawn time gets reduced
M.set_respawn_bonus("CORPSE_DISSOLVING", BIOREACTOR_RESPAWN_BONUS)
Expand Down

0 comments on commit ca14787

Please sign in to comment.