From 9ecf0447f3517a4fde4a4347f2c205128919c808 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 15 Nov 2023 11:29:44 -0500 Subject: [PATCH] v2.3.0: fixed changed curse infusion not applying curse glyphs to armor --- .../shatteredpixeldungeon/items/spells/CurseInfusion.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/CurseInfusion.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/CurseInfusion.java index 56e654d12..90d7ce3d7 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/CurseInfusion.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/CurseInfusion.java @@ -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;