From 865afe454bddab084cfb7bfcb5b9393bc1fa635c Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sun, 4 Feb 2024 14:00:38 +0100 Subject: [PATCH] [MIRROR] Fixes burning a bible giving you an infinite amount of curses. (#26346) * Fixes burning a bible giving you an infinite amount of curses. (#81248) ## About The Pull Request Burning a bible now gives you 1 curse, instead of INFINITY curses. ## Why It's Good For The Game It looks like https://github.com/tgstation/tgstation/pull/78899 forgot about bible curses. I think this was an oversight. ## Changelog :cl: fix: burning a bible no longer gives you INFINITY curses /:cl: * Fixes burning a bible giving you an infinite amount of curses. --------- Co-authored-by: Xander3359 <66163761+Xander3359@users.noreply.github.com> --- code/datums/components/omen.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/datums/components/omen.dm b/code/datums/components/omen.dm index 56af8e6a9db..e4094ba679a 100644 --- a/code/datums/components/omen.dm +++ b/code/datums/components/omen.dm @@ -308,6 +308,7 @@ * While it lasts, parent gets a cursed aura filter. */ /datum/component/omen/bible + incidents_left = 1 /datum/component/omen/bible/RegisterWithParent() . = ..()