From 592236aa1d87f57c6ec83e7bca3cd1304a433bb9 Mon Sep 17 00:00:00 2001 From: Theos Date: Mon, 6 Apr 2020 17:52:25 -0400 Subject: [PATCH 1/3] clock buff --- .../modules/antagonists/clockcult/clock_items/clockwork_slab.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/clockcult/clock_items/clockwork_slab.dm b/code/modules/antagonists/clockcult/clock_items/clockwork_slab.dm index 01f6a741168b..09a251d953d2 100644 --- a/code/modules/antagonists/clockcult/clock_items/clockwork_slab.dm +++ b/code/modules/antagonists/clockcult/clock_items/clockwork_slab.dm @@ -22,7 +22,7 @@ var/recollection_category = "Default" var/list/quickbound = list(/datum/clockwork_scripture/abscond, \ - /datum/clockwork_scripture/ranged_ability/kindle, /datum/clockwork_scripture/ranged_ability/hateful_manacles) //quickbound scripture, accessed by index + /datum/clockwork_scripture/ranged_ability/kindle, /datum/clockwork_scripture/ranged_ability/hateful_manacles, /datum/clockwork_scripture/ranged_ability/sentinels_compromise) //quickbound scripture, accessed by index var/maximum_quickbound = 5 //how many quickbound scriptures we can have var/obj/structure/destructible/clockwork/trap/linking //If we're linking traps together, which ones we're doing From 5587e66350d1bd912323dcdf43cc35d5d35f0049 Mon Sep 17 00:00:00 2001 From: Theos Date: Mon, 6 Apr 2020 18:17:50 -0400 Subject: [PATCH 2/3] sentinels comrpomise fixes robot limbs --- .../antagonists/clockcult/clock_helpers/slab_abilities.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/antagonists/clockcult/clock_helpers/slab_abilities.dm b/code/modules/antagonists/clockcult/clock_helpers/slab_abilities.dm index e1cc8d7b8298..a45f6721f4bc 100644 --- a/code/modules/antagonists/clockcult/clock_helpers/slab_abilities.dm +++ b/code/modules/antagonists/clockcult/clock_helpers/slab_abilities.dm @@ -117,8 +117,8 @@ for(var/i in 1 to healseverity) new /obj/effect/temp_visual/heal(targetturf, "#1E8CE1") if(totaldamage) - L.adjustBruteLoss(-brutedamage) - L.adjustFireLoss(-burndamage) + L.adjustBruteLoss(-brutedamage, TRUE, TRUE) + L.adjustFireLoss(-burndamage, TRUE, TRUE) L.adjustOxyLoss(-oxydamage) L.adjustToxLoss(totaldamage * 0.5, TRUE, TRUE) clockwork_say(ranged_ability_user, text2ratvar("[has_holy_water ? "Heal tainted" : "Mend wounded"] flesh!")) From b77a2020b39275f0996d4b7910fd8ca860533444 Mon Sep 17 00:00:00 2001 From: Theos Date: Fri, 10 Apr 2020 05:32:12 -0400 Subject: [PATCH 3/3] Update slab_abilities.dm --- .../antagonists/clockcult/clock_helpers/slab_abilities.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/antagonists/clockcult/clock_helpers/slab_abilities.dm b/code/modules/antagonists/clockcult/clock_helpers/slab_abilities.dm index a45f6721f4bc..cccad1705c68 100644 --- a/code/modules/antagonists/clockcult/clock_helpers/slab_abilities.dm +++ b/code/modules/antagonists/clockcult/clock_helpers/slab_abilities.dm @@ -117,8 +117,8 @@ for(var/i in 1 to healseverity) new /obj/effect/temp_visual/heal(targetturf, "#1E8CE1") if(totaldamage) - L.adjustBruteLoss(-brutedamage, TRUE, TRUE) - L.adjustFireLoss(-burndamage, TRUE, TRUE) + L.adjustBruteLoss(-brutedamage, TRUE, TRUE) + L.adjustFireLoss(-burndamage, TRUE, TRUE) L.adjustOxyLoss(-oxydamage) L.adjustToxLoss(totaldamage * 0.5, TRUE, TRUE) clockwork_say(ranged_ability_user, text2ratvar("[has_holy_water ? "Heal tainted" : "Mend wounded"] flesh!"))