mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-05-22 21:57:11 +00:00
Fix healer image in header
This commit is contained in:
parent
4e99dc5db4
commit
e2204dff0f
1 changed files with 2 additions and 2 deletions
|
|
@ -77,7 +77,7 @@ public class AvatarWithBarsViewModel {
|
|||
if(user.getStats().get_class()!=null) {
|
||||
userClass+=user.getStats().get_class().name();
|
||||
}
|
||||
lvlText.setText("Lv" + user.getStats().getLvl() + " " + userClass);
|
||||
lvlText.setText("Lvl" + user.getStats().getLvl() + " " + userClass);
|
||||
Drawable drawable;
|
||||
switch(stats.get_class()) {
|
||||
case warrior:
|
||||
|
|
@ -92,7 +92,7 @@ public class AvatarWithBarsViewModel {
|
|||
|
||||
break;
|
||||
case healer:
|
||||
drawable = ResourcesCompat.getDrawable(res, R.drawable.ic_header_mage, null);
|
||||
drawable = ResourcesCompat.getDrawable(res, R.drawable.ic_header_healer, null);
|
||||
|
||||
break;
|
||||
case base:
|
||||
|
|
|
|||
Loading…
Reference in a new issue