From a2c909e49efcbbfe7e4e195dd0858c925c0390e0 Mon Sep 17 00:00:00 2001 From: oranges Date: Wed, 26 Jul 2023 09:07:07 +1200 Subject: [PATCH] Hologram banners no longer give inspiration effects (#77079) ## About The Pull Request Banners spawned via the holodeck are no longer eligible to give healing effects ## Why It's Good For The Game This makes it too easy to source the banners and gives you another healing option that isn't technically supposed to be possible. ## Changelog :cl: oranges balance: holodeck spawned banners no longer give the inspiration effects /:cl: --- code/game/objects/items/religion.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/religion.dm b/code/game/objects/items/religion.dm index d2294a6fca9..0337fa93f0e 100644 --- a/code/game/objects/items/religion.dm +++ b/code/game/objects/items/religion.dm @@ -24,7 +24,7 @@ . += span_notice("Activate it in your hand to inspire nearby allies of this banner's allegiance!") /obj/item/banner/attack_self(mob/living/carbon/human/user) - if(!inspiration_available) + if(!inspiration_available || flags_1 & HOLOGRAM_1) return if(morale_time > world.time) to_chat(user, span_warning("You aren't feeling inspired enough to flourish [src] again yet."))