From 2b9d18597bccb4f0bd17c46ca72f946be5aa6681 Mon Sep 17 00:00:00 2001 From: Mickyan <38563876+Mickyan@users.noreply.github.com> Date: Mon, 21 May 2018 09:53:42 +0200 Subject: [PATCH 1/2] Remove intent auto switch from pacifism (#37938) --- code/modules/mob/living/carbon/human/life.dm | 4 ---- code/modules/mob/living/life.dm | 3 --- 2 files changed, 7 deletions(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index be1cda38b6..a7474b6aaa 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -63,10 +63,6 @@ else if(eye_blurry) //blurry eyes heal slowly adjust_blurriness(-1) - if(has_trait(TRAIT_PACIFISM) && a_intent == INTENT_HARM) - to_chat(src, "You don't feel like harming anybody.") - a_intent_change(INTENT_HELP) - if (getBrainLoss() >= 60 && !incapacitated(TRUE)) SendSignal(COMSIG_ADD_MOOD_EVENT, "brain_damage", /datum/mood_event/brain_damage) if(prob(3)) diff --git a/code/modules/mob/living/life.dm b/code/modules/mob/living/life.dm index 0c63ad2ab4..47eb649d93 100644 --- a/code/modules/mob/living/life.dm +++ b/code/modules/mob/living/life.dm @@ -133,9 +133,6 @@ eye_blurry = max(eye_blurry-1, 0) if(client && !eye_blurry) clear_fullscreen("blurry") - if(has_trait(TRAIT_PACIFISM) && a_intent == INTENT_HARM) - to_chat(src, "You don't feel like harming anybody.") - a_intent_change(INTENT_HELP) /mob/living/proc/update_damage_hud() return