mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-05-18 19:59:00 +00:00
Change profile view stats "Boost" label to "Buffs"
This commit is contained in:
parent
a5e386cd58
commit
567c7e0482
1 changed files with 1 additions and 1 deletions
|
|
@ -378,7 +378,7 @@ class FullProfileActivity : BaseActivity() {
|
|||
val buffs = stats.buffs
|
||||
|
||||
addAttributeRow(getString(R.string.profile_allocated), stats.str?.toFloat() ?: 0f, stats._int?.toFloat() ?: 0f, stats.con?.toFloat() ?: 0f, stats.per?.toFloat() ?: 0f, true, false)
|
||||
addAttributeRow(getString(R.string.profile_boosts), buffs?.getStr() ?: 0f, buffs?.get_int() ?: 0f, buffs?.getCon() ?: 0f, buffs?.getPer() ?: 0f, true, false)
|
||||
addAttributeRow(getString(R.string.buffs), buffs?.getStr() ?: 0f, buffs?.get_int() ?: 0f, buffs?.getCon() ?: 0f, buffs?.getPer() ?: 0f, true, false)
|
||||
|
||||
// Summary row
|
||||
addAttributeRow("", attributeStrSum, attributeIntSum, attributeConSum, attributePerSum, false, true)
|
||||
|
|
|
|||
Loading…
Reference in a new issue