From 23c31083ef5c78ac1de4c0b5dfd190e67e1975f6 Mon Sep 17 00:00:00 2001 From: Blade Barringer Date: Wed, 28 Jan 2015 10:56:16 -0600 Subject: [PATCH] Fixed triad count to actually check and make sure count is 90 --- 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 20b1ffbe3c..47795e030c 100644 --- a/public/js/controllers/inventoryCtrl.js +++ b/public/js/controllers/inventoryCtrl.js @@ -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'); }