Skip to content

Commit 7ce8ce5

Browse files
LocalIdentityLocalIdentity
andauthored
Fix Void Shockwave 50% less Damage on non-repeat (#9568)
Forgot to apply the mod to only the second part of the skill Co-authored-by: LocalIdentity <localidentity2@gmail.com>
1 parent 8c2505d commit 7ce8ce5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/Data/Skills/sup_str.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5002,7 +5002,7 @@ skills["TriggeredSupportVoidShockwave"] = {
50025002
},
50035003
statMap = {
50045004
["shockwave_chained_damage_+%_final"] = {
5005-
mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment)),
5005+
mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "SkillPart", skillPart = 2 }),
50065006
},
50075007
},
50085008
baseFlags = {

src/Export/Skills/sup_str.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,7 @@ local skills, mod, flag, skill = ...
715715
},
716716
statMap = {
717717
["shockwave_chained_damage_+%_final"] = {
718-
mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment)),
718+
mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "SkillPart", skillPart = 2 }),
719719
},
720720
},
721721
#mods

0 commit comments

Comments
 (0)