Skip to content

Commit

Permalink
Fixed couple of achievements
Browse files Browse the repository at this point in the history
  • Loading branch information
naoxink authored Sep 5, 2017
1 parent 1d832ec commit bdfa17c
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions js/achievements.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ var achievements = [
{
'title': 'Buy the "Dev-MX300"',
'check': function(){
return Stats.computerModel === 'Dev-MX300'
return Shop.items['Dev-MX300'].owned
},
'done': false
},
{
'title': 'Buy the "Dev-550sx PRO"',
'check': function(){
return Stats.computerModel === 'Dev-550sx PRO'
return Shop.items['Dev-550sx PRO'].owned
},
'done': false
},
Expand All @@ -55,6 +55,13 @@ var achievements = [
},
'done': false
},
{
'title': 'Get the maximum jobs',
'check': function(){
return Stats.jobs.length === Core.base.maxJobs
},
'done': false
},
{
'title': 'Achieve the minimum pulse speed',
'check': function(){
Expand Down

0 comments on commit bdfa17c

Please sign in to comment.