Removed hp from popover function

This commit is contained in:
Blade Barringer
2015-01-28 15:11:32 -06:00
parent 043baf4961
commit c328d0fd3c
+1 -1
View File
@@ -162,7 +162,7 @@ habitrpg.controller("InventoryCtrl",
$scope.questPopover = function(quest) {
var text = '';
if(quest.boss) {
text += '**' + window.env.t('bossHP') + ':** ' + quest.boss.hp + ' ' + window.env.t('hp') + '\n\n';
text += '**' + window.env.t('bossHP') + ':** ' + quest.boss.hp + ' \n\n';
text += '**' + window.env.t('bossStrength') + ':** ' + quest.boss.str + '\n\n';
} else if(quest.collect) {
var count = 0;