Fix rage strike npc names. Fixes #945

This commit is contained in:
Phillip Thelen 2018-02-14 11:15:47 +01:00
parent d12f1d3762
commit 6c80b19ec2
2 changed files with 4 additions and 2 deletions

View file

@ -774,4 +774,6 @@
<string name="world_boss_description_4">Check the Tavern to see Boss progress and Rage attacks</string>
<string name="world_boss_action_prompt" formatted="false">Defeat the Boss to earn special rewards and save Habitica from %ss Terror!</string>
<string name="world_boss_description_subtitle">%s attacks!</string>
<string name="questShop_owner_long">Ian the Quest Guide</string>
<string name="seasonalShop_owner_long">Seasonal Sorceress</string>
</resources>

View file

@ -288,8 +288,8 @@ class QuestProgressView : LinearLayout {
return when (key) {
"market" -> context.getString(R.string.market_owner_long)
"tavern" -> context.getString(R.string.tavern_owner_long)
"questShop" -> context.getString(R.string.questShop_owner)
"seasonalShop" -> context.getString(R.string.seasonalShop_owner)
"questShop" -> context.getString(R.string.questShop_owner_long)
"seasonalShop" -> context.getString(R.string.seasonalShop_owner_long)
"stable" -> context.getString(R.string.stable_owner_long)
else -> ""
}