Skip to content

Commit

Permalink
Minor fixes to elemental barrages scaling
Browse files Browse the repository at this point in the history
  • Loading branch information
Vek17 committed Mar 18, 2023
1 parent f7ef5db commit b405e85
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Repository.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"Releases": [
{
"Id": "TabletopTweaks-Reworks",
"Version": "1.2.3"
"Version": "1.2.4"
}
]
}
2 changes: 0 additions & 2 deletions TabletopTweaks-Reworks/Patches/Lich.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ static class BlueprintsCache_Init_Patch {
};
});
}

static void PatchDecayingTouch() {
if (TTTContext.Homebrew.MythicReworks.Lich.IsDisabled("DecayingTouch")) { return; }

Expand Down Expand Up @@ -212,7 +211,6 @@ static class BlueprintsCache_Init_Patch {

TTTContext.Logger.LogPatch(DecayingTouchFeature);
}

static void PatchEclipseChill() {
if (TTTContext.Homebrew.MythicReworks.Lich.IsDisabled("EclipseChill")) { return; }

Expand Down
2 changes: 1 addition & 1 deletion TabletopTweaks-Reworks/Patches/MythicAbilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ static class BlueprintsCache_Init_Patch {
barrageBuff.AddComponent<ElementalBarrageIncomingTrigger>(c => {
c.IgnoreDamageFromThisFact = true;
c.CheckEnergyDamageType = true;
c.CheckDamageDealt = true;
c.CheckDamageDealt = false;
c.CompareType = CompareOperation.Type.Greater;
c.TargetValue = 0;
c.EnergyType = trigger;
Expand Down

0 comments on commit b405e85

Please sign in to comment.