mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-05 03:52:14 +00:00
Added hp to quest popover
This commit is contained in:
parent
b56c5af978
commit
4e1716a8db
1 changed files with 1 additions and 1 deletions
|
|
@ -162,7 +162,7 @@ habitrpg.controller("InventoryCtrl",
|
|||
$scope.questPopover = function(quest) {
|
||||
var text = '';
|
||||
if(quest.boss) {
|
||||
text += '**' + window.env.t('bossHP') + ':** ' + quest.boss.hp + '\n\n';
|
||||
text += '**' + window.env.t('bossHP') + ':** ' + quest.boss.hp + ' ' + window.env.t('hp') + '\n\n';
|
||||
text += '**' + window.env.t('bossStrength') + ':** ' + quest.boss.str + '\n\n';
|
||||
} else if(quest.collect) {
|
||||
var count = 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue