From 95db2b59de61a5df48a46b7412461adbed0d107a Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Tue, 21 Nov 2023 23:38:04 +0300 Subject: [PATCH] [MIRROR] Fixes cursed/bad luck initializing with the wrong amount of incidents [MDB IGNORE] (#751) * Fixes cursed/bad luck initializing with the wrong amount of incidents (#79846) --------- Co-authored-by: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Co-authored-by: lessthanthree <83487515+lessthnthree@users.noreply.github.com> --- code/datums/components/omen.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/omen.dm b/code/datums/components/omen.dm index f03f28b8d6a..56af8e6a9db 100644 --- a/code/datums/components/omen.dm +++ b/code/datums/components/omen.dm @@ -17,7 +17,7 @@ /// Base damage from negative events. Cursed take 25% of this damage. var/damage_mod = 1 -/datum/component/omen/Initialize(obj/vessel, incidents_left = 1, luck_mod, damage_mod) +/datum/component/omen/Initialize(obj/vessel, incidents_left, luck_mod, damage_mod) if(!isliving(parent)) return COMPONENT_INCOMPATIBLE