Skip to content

Commit

Permalink
Fix Rupture sometimes applying multiple times (#8320)
Browse files Browse the repository at this point in the history
* fix issue #8259 - rupture applying multiple times

* add changes to sup_dex.txt as well

---------

Co-authored-by: majochem <majochem@users.noreply.github.com>
  • Loading branch information
majochem and majochem authored Nov 18, 2024
1 parent 7da21f6 commit 76756ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Data/Skills/sup_dex.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3134,10 +3134,10 @@ skills["SupportRupture"] = {
statDescriptionScope = "gem_stat_descriptions",
statMap = {
["support_rupture_bleeding_damage_taken_+%_final"] = {
mod("DamageTaken", "MORE", nil, 0, KeywordFlag.Bleed, { type = "GlobalEffect", effectType = "Debuff" }, { type = "Multiplier", var = "RuptureStack", limit = 3 })
mod("DamageTaken", "MORE", nil, 0, KeywordFlag.Bleed, { type = "GlobalEffect", effectType = "Debuff", effectName = "Rupture" }, { type = "Multiplier", var = "RuptureStack", limit = 3 })
},
["support_rupture_bleeding_time_passed_+%_final"] = {
mod("BleedExpireRate", "MORE", nil, 0, KeywordFlag.Bleed, { type = "GlobalEffect", effectType = "Debuff" }, { type = "Multiplier", var = "RuptureStack", limit = 3 })
mod("BleedExpireRate", "MORE", nil, 0, KeywordFlag.Bleed, { type = "GlobalEffect", effectType = "Debuff", effectName = "Rupture" }, { type = "Multiplier", var = "RuptureStack", limit = 3 })
},
["critical_strikes_that_inflict_bleeding_also_rupture"] = {
flag("Condition:CanInflictRupture", { type = "GlobalEffect", effectType = "Buff" }),
Expand Down
4 changes: 2 additions & 2 deletions src/Export/Skills/sup_dex.txt
Original file line number Diff line number Diff line change
Expand Up @@ -377,10 +377,10 @@ local skills, mod, flag, skill = ...
#skill SupportRupture
statMap = {
["support_rupture_bleeding_damage_taken_+%_final"] = {
mod("DamageTaken", "MORE", nil, 0, KeywordFlag.Bleed, { type = "GlobalEffect", effectType = "Debuff" }, { type = "Multiplier", var = "RuptureStack", limit = 3 })
mod("DamageTaken", "MORE", nil, 0, KeywordFlag.Bleed, { type = "GlobalEffect", effectType = "Debuff", effectName = "Rupture" }, { type = "Multiplier", var = "RuptureStack", limit = 3 })
},
["support_rupture_bleeding_time_passed_+%_final"] = {
mod("BleedExpireRate", "MORE", nil, 0, KeywordFlag.Bleed, { type = "GlobalEffect", effectType = "Debuff" }, { type = "Multiplier", var = "RuptureStack", limit = 3 })
mod("BleedExpireRate", "MORE", nil, 0, KeywordFlag.Bleed, { type = "GlobalEffect", effectType = "Debuff", effectName = "Rupture" }, { type = "Multiplier", var = "RuptureStack", limit = 3 })
},
["critical_strikes_that_inflict_bleeding_also_rupture"] = {
flag("Condition:CanInflictRupture", { type = "GlobalEffect", effectType = "Buff" }),
Expand Down

0 comments on commit 76756ff

Please sign in to comment.