You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix Relic Flask's combining effect with unique flask of the same name (#8610)
Relic flasks were not being checked to also be unique when we merge the buff effects so they were duplicating
Fixed for Tinctures too
Co-authored-by: LocalIdentity <localidentity2@gmail.com>
if (notonlyRecoveryorcheckNonRecoveryFlasksForMinions) and (flasksApplyToMinionorquickSilverAppliesToAlliesor (nonUniqueFlasksApplyToMinionanditem.rarity~="UNIQUE")) then
1401
+
if (notonlyRecoveryorcheckNonRecoveryFlasksForMinions) and (flasksApplyToMinionorquickSilverAppliesToAlliesor (nonUniqueFlasksApplyToMinionanditem.rarity~="UNIQUE"anditem.rarity~="RELIC")) then
if (notonlyRecoveryorcheckNonRecoveryFlasksForMinions) and (flasksApplyToMinionorquickSilverAppliesToAlliesor (nonUniqueFlasksApplyToMinionanditem.rarity~="UNIQUE")) then
1425
+
if (notonlyRecoveryorcheckNonRecoveryFlasksForMinions) and (flasksApplyToMinionorquickSilverAppliesToAlliesor (nonUniqueFlasksApplyToMinionanditem.rarity~="UNIQUE"anditem.rarity~="RELIC")) then
1426
1426
srcList=new("ModList")
1427
1427
srcList:ScaleAddList(modList, effectModNonPlayer)
1428
1428
mergeBuff(srcList, flaskBuffsNonPlayer, key)
@@ -1522,7 +1522,7 @@ function calcs.perform(env, skipEHP)
1522
1522
localsrcList=new("ModList")
1523
1523
srcList:ScaleAddList(modList, effectMod)
1524
1524
localkey
1525
-
ifitem.rarity=="UNIQUE" then
1525
+
ifitem.rarity=="UNIQUE" oritem.rarity=="RELIC" then
0 commit comments