v2.3.0: fixed changed curse infusion not applying curse glyphs to armor

This commit is contained in:
Evan Debenham
2023-11-15 11:29:44 -05:00
parent 7b7ecb3609
commit 9ecf0447f3

View File

@@ -79,7 +79,7 @@ public class CurseInfusion extends InventorySpell {
if (a.hasGoodGlyph() || a.curseInfusionBonus) {
a.inscribe(Armor.Glyph.randomCurse(a.glyph.getClass()));
}
} else if (a.hasGoodGlyph() || a.curseInfusionBonus) {
} else {
a.inscribe(Armor.Glyph.randomCurse());
}
a.curseInfusionBonus = true;