From f21af607d6486e85e466bb1717e5b5a313969ec9 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 26 Aug 2022 11:16:34 -0400 Subject: [PATCH] v1.4.0: adjusted the text on magical infusion --- core/src/main/assets/messages/items/items.properties | 2 +- .../shatteredpixeldungeon/items/spells/MagicalInfusion.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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);