Skip to content

Commit 7e9d26b

Browse files
LocalIdentityLocalIdentity
andauthored
Fix Hollow Form support effects being switched (#2099)
I accidently swapped the stats in the export so the less damage multi was applying to attack speed Co-authored-by: LocalIdentity <localidentity2@gmail.com>
1 parent 46bce3c commit 7e9d26b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/Data/Skills/other.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8896,10 +8896,10 @@ skills["SupportHollowFormPlayer"] = {
88968896
statDescriptionScope = "meta_gem_stat_descriptions",
88978897
statMap = {
88988898
["mantra_of_illusions_triggered_skill_attack_speed_+%_final"] = {
8899-
mod("Damage", "MORE", nil),
8899+
mod("Speed", "MORE", nil, ModFlag.Attack),
89008900
},
89018901
["mantra_of_illusions_triggered_skill_damage_+%_final"] = {
8902-
mod("Speed", "MORE", nil, ModFlag.Attack),
8902+
mod("Damage", "MORE", nil),
89038903
},
89048904
},
89058905
baseFlags = {

src/Export/Skills/other.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -576,10 +576,10 @@ statMap = {
576576
#set SupportHollowFormPlayer
577577
statMap = {
578578
["mantra_of_illusions_triggered_skill_attack_speed_+%_final"] = {
579-
mod("Damage", "MORE", nil),
579+
mod("Speed", "MORE", nil, ModFlag.Attack),
580580
},
581581
["mantra_of_illusions_triggered_skill_damage_+%_final"] = {
582-
mod("Speed", "MORE", nil, ModFlag.Attack),
582+
mod("Damage", "MORE", nil),
583583
},
584584
},
585585
#mods

0 commit comments

Comments
 (0)