Fixed triad count to actually check and make sure count is 90
This commit is contained in:
@@ -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');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user