Skip to content

Commit

Permalink
eigenstasium no longer cares about purity (which we don't use) (#2383)
Browse files Browse the repository at this point in the history
  • Loading branch information
Absolucy authored Jun 24, 2024
1 parent d9a6ace commit 36771e8
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
to_chat(living_mob, span_userdanger("You feel like part of yourself has split off!"))

//Teleports you home if it's pure enough
if(creation_purity > 0.9 && location_created && data["ingested"])
if(/* creation_purity > 0.9 && */ location_created && data["ingested"]) // monkestation edit: begone purity
do_sparks(5,FALSE,living_mob)
do_teleport(living_mob, location_created, 0, asoundin = 'sound/effects/phasein.ogg')
do_sparks(5,FALSE,living_mob)
Expand Down Expand Up @@ -111,8 +111,10 @@
///Lets you link lockers together
/datum/reagent/eigenstate/expose_turf(turf/exposed_turf, reac_volume)
. = ..()
/* monkestation start - get rid of purity bs
if(creation_purity < 0.8)
return
monkestation end*/
var/list/lockers = list()
for(var/obj/structure/closet/closet in exposed_turf.contents)
lockers += closet
Expand Down

0 comments on commit 36771e8

Please sign in to comment.