From c328d0fd3c91cf7f6afc06dd7edd3ee3de322d4e Mon Sep 17 00:00:00 2001 From: Blade Barringer Date: Wed, 28 Jan 2015 15:11:32 -0600 Subject: [PATCH] Removed hp from popover function --- public/js/controllers/inventoryCtrl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/controllers/inventoryCtrl.js b/public/js/controllers/inventoryCtrl.js index f222b863d7..4fe7fa8da0 100644 --- a/public/js/controllers/inventoryCtrl.js +++ b/public/js/controllers/inventoryCtrl.js @@ -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;