diff --git a/core/src/main/assets/messages/items/items.properties b/core/src/main/assets/messages/items/items.properties index 9eed4528c..931e094d1 100644 --- a/core/src/main/assets/messages/items/items.properties +++ b/core/src/main/assets/messages/items/items.properties @@ -1108,7 +1108,7 @@ items.spells.spell.no_magic=You can't cast spells while magic immune. items.spells.magicalinfusion.name=magical infusion items.spells.magicalinfusion.inv_title=Infuse an item -items.spells.magicalinfusion.infuse=Your %s is infused with arcane energy! +items.spells.magicalinfusion.infuse=Your item is infused with arcane energy! items.spells.magicalinfusion.desc=This spell possesses the same magical power as a scroll of upgrade, but in a more stable form.\n\nIn addition to upgrading an item as normal it will never erase an enchantment on a weapon or a glyph on armor, including curses. items.spells.magicalporter.name=magical porter diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/MagicalInfusion.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/MagicalInfusion.java index 769f1d9cb..da553baf9 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/MagicalInfusion.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/MagicalInfusion.java @@ -62,7 +62,7 @@ public class MagicalInfusion extends InventorySpell { item.upgrade(); } - GLog.p( Messages.get(this, "infuse", item.name()) ); + GLog.p( Messages.get(this, "infuse") ); Talent.onUpgradeScrollUsed( Dungeon.hero ); Badges.validateItemLevelAquired(item);