Fix some wording.

This commit is contained in:
Thomas Andres Gomez 2023-12-17 15:10:30 +01:00
parent 8acb98ac27
commit bb0e10c1ad
3 changed files with 17 additions and 7 deletions

View file

@ -368,7 +368,7 @@ class DiceThrowUseCase @Inject constructor(
character = sheet,
action = diceThrow.weapon,
diceThrow = action?.damage,
title = { getString(R.string.dice_roll_attack_hit_title, it) },
title = { getString(R.string.dice_roll_attack_damage_title, it) },
alterations = alterations,
ability = Property.PHYSICAL_MELEE_DAMAGE,
)
@ -398,7 +398,7 @@ class DiceThrowUseCase @Inject constructor(
character = sheet,
action = diceThrow.weapon,
diceThrow = action?.damage,
title = { getString(R.string.dice_roll_attack_hit_title, it) },
title = { getString(R.string.dice_roll_attack_damage_title, it) },
alterations = alterations,
ability = Property.PHYSICAL_RANGE_DAMAGE,
)
@ -413,7 +413,7 @@ class DiceThrowUseCase @Inject constructor(
character = sheet,
action = diceThrow.item,
diceThrow = action?.effect,
title = { getString(R.string.dice_roll_attack_hit_title, it) },
title = { getString(R.string.dice_roll_use_object, it) },
alterations = emptyMap(),
ability = null,
)