From b405e85986af8c0937141ccddef14bf564488195 Mon Sep 17 00:00:00 2001 From: Sean Petrie Date: Sat, 18 Mar 2023 00:23:51 -0500 Subject: [PATCH] Minor fixes to elemental barrages scaling --- Repository.json | 2 +- TabletopTweaks-Reworks/Patches/Lich.cs | 2 -- TabletopTweaks-Reworks/Patches/MythicAbilities.cs | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Repository.json b/Repository.json index 2c77b21..f377baa 100644 --- a/Repository.json +++ b/Repository.json @@ -2,7 +2,7 @@ "Releases": [ { "Id": "TabletopTweaks-Reworks", - "Version": "1.2.3" + "Version": "1.2.4" } ] } \ No newline at end of file diff --git a/TabletopTweaks-Reworks/Patches/Lich.cs b/TabletopTweaks-Reworks/Patches/Lich.cs index 144488f..6760654 100644 --- a/TabletopTweaks-Reworks/Patches/Lich.cs +++ b/TabletopTweaks-Reworks/Patches/Lich.cs @@ -70,7 +70,6 @@ static void PatchDeadlyMagic() { }; }); } - static void PatchDecayingTouch() { if (TTTContext.Homebrew.MythicReworks.Lich.IsDisabled("DecayingTouch")) { return; } @@ -212,7 +211,6 @@ static void PatchDecayingTouch() { TTTContext.Logger.LogPatch(DecayingTouchFeature); } - static void PatchEclipseChill() { if (TTTContext.Homebrew.MythicReworks.Lich.IsDisabled("EclipseChill")) { return; } diff --git a/TabletopTweaks-Reworks/Patches/MythicAbilities.cs b/TabletopTweaks-Reworks/Patches/MythicAbilities.cs index 0221315..9251b65 100644 --- a/TabletopTweaks-Reworks/Patches/MythicAbilities.cs +++ b/TabletopTweaks-Reworks/Patches/MythicAbilities.cs @@ -165,7 +165,7 @@ void AddIncomingDamageTriggers(BlueprintBuff barrageBuff, params DamageEnergyTyp barrageBuff.AddComponent(c => { c.IgnoreDamageFromThisFact = true; c.CheckEnergyDamageType = true; - c.CheckDamageDealt = true; + c.CheckDamageDealt = false; c.CompareType = CompareOperation.Type.Greater; c.TargetValue = 0; c.EnergyType = trigger;