mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-22 11:38:24 +00:00
Fixed triad count to actually check and make sure count is 90
This commit is contained in:
parent
0096873cf5
commit
23c31083ef
1 changed files with 1 additions and 1 deletions
|
|
@ -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');
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue