Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

church QOL #1775

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
commenting out more code buh
  • Loading branch information
benj8560 committed Jul 28, 2024
commit 8ec8ad4dedc52199dcf8ee8e75b5bea503107cbe
5 changes: 4 additions & 1 deletion code/modules/core_implant/cruciform/cruciform.dm
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,13 @@ var/list/disciples = list()
var/observation_points = 200
if(!wearer || active)
return
/* //eclipse edit
if(get_active_mutation(wearer, MUTATION_GODBLOOD))
spawn(2 MINUTES)
for(var/mob/living/carbon/human/H in (disciples - wearer))
to_chat(H, SPAN_WARNING("A distant scream pierced your mind. You feel that a vile mutant sneaked among the faithful."))
playsound(wearer.loc, 'sound/hallucinations/veryfar_noise.ogg', 55, 1)
*/
else if(is_carrion(wearer))
if(wearer.get_species() == SPECIES_MONKEY)
observation_points /= 20
Expand Down Expand Up @@ -144,11 +146,12 @@ var/list/disciples = list()
..()
// if(active && round(world.time) % 5 == 0)
// remove_cyber() -- Eclipse Edit
/* -- Eclipse Edit church is cool with mutants here
if(wearer.mutation_index)
var/datum/mutation/M = pick(wearer.active_mutations)
M.cleanse(wearer)
wearer.adjustFireLoss(rand(5,25))

*/
if(wearer.stat == DEAD)
deactivate()
else if(ishuman(wearer)) //Eclipse add
Expand Down
2 changes: 1 addition & 1 deletion code/modules/genetics/mutations_T4.dm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

/datum/mutation/t4/godblood
name = "God Blood"
desc = "Suppresses cruciform, allowing to have any implant or organ, as well as mutations."
desc = "Suppresses cruciform, allowing them to block Atonement and other litanies that force control over it." //eclipse edit.

/datum/mutation/t4/xray
name = "X Ray Vision"
Expand Down
Loading