Fixed triad count to actually check and make sure count is 90

This commit is contained in:
Blade Barringer 2015-01-28 10:56:16 -06:00
parent 0096873cf5
commit 23c31083ef

View file

@ -97,7 +97,7 @@ habitrpg.controller("InventoryCtrl",
// Checks if Triad Bingo has been reached for the first time
if(!User.user.achievements.triadBingo
&& $rootScope.mountCount >= 90
&& Shared.countTriad(User.user.items.pets)) {
&& Shared.countTriad(User.user.items.pets) >= 90) {
User.user.achievements.triadBingo = true;
$rootScope.openModal('achievements/triadBingo');
}