Skip to content

Commit

Permalink
I have never been loved by anyone
Browse files Browse the repository at this point in the history
Nor have I loved anyone else
  • Loading branch information
Matt Atlas committed Jul 25, 2023
1 parent be469a7 commit 4836e4c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions code/modules/psionics/abilities/psi_search.dm
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@
if(H.psi && H.psi.get_rank() == PSI_RANK_HARMONIOUS)
harmonious_signatures++
continue
signatures += "[perceptive_signatures] weak signatures"
signatures += "[sensitive_signatures] robust signatures"
signatures += "[harmonious_signatures] robust signatures"
if(length(perceptive_signatures))
signatures += "[perceptive_signatures] weak signature[perceptive_signatures > 1 ? "s" : ""]"
if(length(sensitive_signatures))
signatures += "[sensitive_signatures] robust signature[sensitive_signatures > 1 ? "s" : ""]"
if(length(harmonious_signatures))
signatures += "[harmonious_signatures] very powerful signature[harmonious_signatures > 1 ? "s" : ""]"
to_chat(user, SPAN_NOTICE("Reaching out into the Nlom, you sense [english_list(signatures)]."))
4 changes: 2 additions & 2 deletions code/modules/psionics/mob/mob_helpers.dm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
return !has_psionics()

/mob/living/carbon/is_psi_blocked()
if(HAS_TRAIT(src, TRAIT_ZONA_BOVINAE_ABSORBED) || HAS_TRAIT(src, TRAIT_PSIONICALLY_DEAF))
if(HAS_TRAIT(src, TRAIT_PSIONICALLY_DEAF))
return SPAN_WARNING("[src]'s mind is inaccessible, like hitting a brick wall.")
for (var/obj/item/implant/mindshield/I in src)
if (I.implanted)
Expand All @@ -20,7 +20,7 @@
return TRUE

/mob/living/carbon/has_zona_bovinae()
if(HAS_TRAIT(src, TRAIT_ZONA_BOVINAE_ABSORBED) || HAS_TRAIT(src, TRAIT_PSIONICALLY_DEAF))
if(HAS_TRAIT(src, TRAIT_PSIONICALLY_DEAF))
return FALSE
return TRUE

Expand Down

0 comments on commit 4836e4c

Please sign in to comment.