From 0d696de7cd2b73bf401a2144b91bb79bfffa2e08 Mon Sep 17 00:00:00 2001 From: kiwedespars <47008095+kiwedespars@users.noreply.github.com> Date: Tue, 9 Mar 2021 12:12:44 -0800 Subject: [PATCH] exist - fixes things. - user check readded (whoops) - knwoledge added - nerfs madness mask --- code/modules/antagonists/eldritch_cult/eldritch_effects.dm | 4 ++-- code/modules/antagonists/eldritch_cult/eldritch_items.dm | 3 +-- code/modules/antagonists/eldritch_cult/eldritch_knowledge.dm | 2 +- code/modules/antagonists/eldritch_cult/eldritch_magic.dm | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/code/modules/antagonists/eldritch_cult/eldritch_effects.dm b/code/modules/antagonists/eldritch_cult/eldritch_effects.dm index 1676be9966..e4a95ad86b 100644 --- a/code/modules/antagonists/eldritch_cult/eldritch_effects.dm +++ b/code/modules/antagonists/eldritch_cult/eldritch_effects.dm @@ -28,8 +28,8 @@ /obj/effect/eldritch/attackby(obj/item/I, mob/living/user) . = ..() - if(istype(I,/obj/item/nullrod)) - user.say("BEGONE FOUL MAGIKS!!", forced = "nullrod") + if(istype(I, /obj/item/storage/book/bible) || istype(I, /obj/item/nullrod)) + user.say("BEGONE FOUL MAGICKS!!", forced = "bible") to_chat(user, "You disrupt the magic of [src] with [I].") qdel(src) diff --git a/code/modules/antagonists/eldritch_cult/eldritch_items.dm b/code/modules/antagonists/eldritch_cult/eldritch_items.dm index fe32f5f732..7b35f4e71b 100644 --- a/code/modules/antagonists/eldritch_cult/eldritch_items.dm +++ b/code/modules/antagonists/eldritch_cult/eldritch_items.dm @@ -212,7 +212,6 @@ allowed = list(/obj/item/melee/sickly_blade, /obj/item/forbidden_book, /obj/item/living_heart) hoodtype = /obj/item/clothing/head/hooded/cult_hoodie/void flags_inv = NONE - item_flags = EXAMINE_SKIP // slightly worse than normal cult robes armor = list("melee" = 30, "bullet" = 30, "laser" = 30,"energy" = 30, "bomb" = 15, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) pocket_storage_component_path = /datum/component/storage/concrete/pockets/void_cloak @@ -281,7 +280,7 @@ if(DT_PROB(30,delta_time)) human_in_range.emote(pick("giggle","laugh")) - human_in_range.adjustStaminaLoss(8) + human_in_range.adjustStaminaLoss(6) if(DT_PROB(25,delta_time)) human_in_range.Dizzy(5) diff --git a/code/modules/antagonists/eldritch_cult/eldritch_knowledge.dm b/code/modules/antagonists/eldritch_cult/eldritch_knowledge.dm index 2c49c8a7be..3f7b80b418 100644 --- a/code/modules/antagonists/eldritch_cult/eldritch_knowledge.dm +++ b/code/modules/antagonists/eldritch_cult/eldritch_knowledge.dm @@ -1,6 +1,6 @@ /** - * #Eldritch Knwoledge + * #Eldritch Knowledge * * Datum that makes eldritch cultist interesting. * diff --git a/code/modules/antagonists/eldritch_cult/eldritch_magic.dm b/code/modules/antagonists/eldritch_cult/eldritch_magic.dm index 621ef95532..859ee170ce 100644 --- a/code/modules/antagonists/eldritch_cult/eldritch_magic.dm +++ b/code/modules/antagonists/eldritch_cult/eldritch_magic.dm @@ -50,7 +50,7 @@ /obj/item/melee/touch_attack/mansus_fist/afterattack(atom/target, mob/user, proximity_flag, click_parameters) - if(!proximity_flag) + if(!proximity_flag | target == user) return playsound(user, 'sound/items/welder.ogg', 75, TRUE) if(ishuman(target))