Skip to content

Commit 7639d99

Browse files
author
LocalIdentity
committed
Fix Rageforged export
meant to have 0 instead of nil for the ModFlag
1 parent dcc60cb commit 7639d99

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Data/Skills/sup_str.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5377,7 +5377,7 @@ skills["SupportRageforgedPlayer"] = {
53775377
statDescriptionScope = "gem_stat_descriptions",
53785378
statMap = {
53795379
["support_rageforged_enraged_damage_+%_final"] = {
5380-
mod("Damage", "MORE", nil, nil, 0, { type = "MultiplierThreshold", var = "Rage", threshold = 10 }),
5380+
mod("Damage", "MORE", nil, 0, 0, { type = "MultiplierThreshold", var = "Rage", threshold = 10 }),
53815381
},
53825382
},
53835383
baseFlags = {
@@ -5414,7 +5414,7 @@ skills["SupportRageforgedPlayerTwo"] = {
54145414
statDescriptionScope = "gem_stat_descriptions",
54155415
statMap = {
54165416
["support_rageforged_enraged_damage_+%_final"] = {
5417-
mod("Damage", "MORE", nil, nil, 0, { type = "MultiplierThreshold", var = "Rage", threshold = 10 }),
5417+
mod("Damage", "MORE", nil, 0, 0, { type = "MultiplierThreshold", var = "Rage", threshold = 10 }),
54185418
},
54195419
},
54205420
baseFlags = {

src/Export/Skills/sup_str.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1243,7 +1243,7 @@ statMap = {
12431243
#set SupportRageforgedPlayer
12441244
statMap = {
12451245
["support_rageforged_enraged_damage_+%_final"] = {
1246-
mod("Damage", "MORE", nil, nil, 0, { type = "MultiplierThreshold", var = "Rage", threshold = 10 }),
1246+
mod("Damage", "MORE", nil, 0, 0, { type = "MultiplierThreshold", var = "Rage", threshold = 10 }),
12471247
},
12481248
},
12491249
#mods
@@ -1253,7 +1253,7 @@ statMap = {
12531253
#set SupportRageforgedPlayerTwo
12541254
statMap = {
12551255
["support_rageforged_enraged_damage_+%_final"] = {
1256-
mod("Damage", "MORE", nil, nil, 0, { type = "MultiplierThreshold", var = "Rage", threshold = 10 }),
1256+
mod("Damage", "MORE", nil, 0, 0, { type = "MultiplierThreshold", var = "Rage", threshold = 10 }),
12571257
},
12581258
},
12591259
#mods

0 commit comments

Comments
 (0)