Skip to content

Commit e18b13a

Browse files
author
LocalIdentity
committed
Fix Transfusion Support disabling Offering buffs
The transfusion global buff for SoulEater was being picked up as the first buff on the offering skill gems so buffs on the offering skills would not inherit the `buffMinions` and `buffNotPlayer` mod as those only get inherited if the skill already has no buff mods Giving the mods an effect name forces them to not be included in the buff parsing of the offering skills
1 parent 322fc5d commit e18b13a

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/Data/Skills/sup_str.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5203,8 +5203,8 @@ skills["SupportTransfusion"] = {
52035203
statDescriptionScope = "gem_stat_descriptions",
52045204
statMap = {
52055205
["random_nearby_minion_gain_a_soul_eater_soul_on_X_life_spent"] = {
5206-
flag("Condition:MinionCanHaveSoulEater", { type = "GlobalEffect", effectType = "Buff" }),
5207-
mod("MinionModifier", "LIST", { mod = mod("Condition:CanHaveSoulEater", "FLAG", true) }, 0, 0, { type = "GlobalEffect", effectType = "Buff" }),
5206+
flag("Condition:MinionCanHaveSoulEater", { type = "GlobalEffect", effectType = "Buff", effectName = "Transfusion" }),
5207+
mod("MinionModifier", "LIST", { mod = mod("Condition:CanHaveSoulEater", "FLAG", true) }, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Transfusion" }),
52085208
},
52095209
},
52105210
qualityStats = {

src/Export/Skills/sup_str.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -740,8 +740,8 @@ local skills, mod, flag, skill = ...
740740
#skill SupportTransfusion
741741
statMap = {
742742
["random_nearby_minion_gain_a_soul_eater_soul_on_X_life_spent"] = {
743-
flag("Condition:MinionCanHaveSoulEater", { type = "GlobalEffect", effectType = "Buff" }),
744-
mod("MinionModifier", "LIST", { mod = mod("Condition:CanHaveSoulEater", "FLAG", true) }, 0, 0, { type = "GlobalEffect", effectType = "Buff" }),
743+
flag("Condition:MinionCanHaveSoulEater", { type = "GlobalEffect", effectType = "Buff", effectName = "Transfusion" }),
744+
mod("MinionModifier", "LIST", { mod = mod("Condition:CanHaveSoulEater", "FLAG", true) }, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Transfusion" }),
745745
},
746746
},
747747
#mods

0 commit comments

Comments
 (0)