From 2449769a6429066c7c7a7c44ac04997ff7a04228 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 9 Mar 2023 17:40:17 -0500 Subject: [PATCH] v2.0.0: fixed missing translation text for combined lethality execution --- core/src/main/assets/messages/actors/actors.properties | 1 + .../com/shatteredpixel/shatteredpixeldungeon/actors/Char.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/main/assets/messages/actors/actors.properties b/core/src/main/assets/messages/actors/actors.properties index dc321953c..425a1ea8f 100644 --- a/core/src/main/assets/messages/actors/actors.properties +++ b/core/src/main/assets/messages/actors/actors.properties @@ -595,6 +595,7 @@ actors.hero.talent$lethalhastecooldown.desc=You have recently used this talent, actors.hero.talent$swiftequipcooldown.name=swift equip cooldown actors.hero.talent$swiftequipcooldown.desc=You have recently used this talent, and must wait before using it again.\n\nTurns remaining: %s. actors.hero.talent$combinedlethalitytriggertracker.name=combined lethality +actors.hero.talent$combinedlethalitytriggertracker.executed=executed actors.hero.talent$combinedlethalitytriggertracker.desc=The Duelist's next attack will execute enemies below a certain health threshold.\n\nTurns remaining: %s. #warrior diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/Char.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/Char.java index 90697f7cc..266e35157 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/Char.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/Char.java @@ -454,7 +454,7 @@ public abstract class Char extends Actor { enemy.damage(-1, this); DeathMark.processFearTheReaper(enemy); } - enemy.sprite.showStatus(CharSprite.NEGATIVE, "executed"); + enemy.sprite.showStatus(CharSprite.NEGATIVE, Messages.get(Talent.CombinedLethalityTriggerTracker.class, "executed")); } buff(Talent.CombinedLethalityTriggerTracker.class).detach(); }