Revert "feature: adding hp notification for boss damage" (#8340)

This commit is contained in:
Alys
2016-12-31 17:31:25 +10:00
committed by GitHub
parent fe7850d10f
commit 91f5c47d9d
6 changed files with 7 additions and 66 deletions

View File

@@ -78,13 +78,6 @@ angular.module("habitrpg").factory("Notification",
_notify(_sign(val) + " " + _round(val) + " " + window.env.t('health'), 'hp', 'glyphicon glyphicon-heart');
}
function bossDamage(val) {
var data = {
val: _round(val),
};
_notify(window.env.t('bossDamageDone', data), 'hp', 'glyphicon glyphicon-heart');
}
function lvl(){
_notify(window.env.t('levelUp'), 'lvl', 'glyphicon glyphicon-chevron-up');
}
@@ -183,6 +176,5 @@ angular.module("habitrpg").factory("Notification",
text: text,
quest: quest,
showLoginIncentive: showLoginIncentive,
bossDamage: bossDamage,
};
}]);