Skip to content

Commit

Permalink
Merge pull request #68 from PG-Fuury/master
Browse files Browse the repository at this point in the history
Bringing RN requirement in line with description and Dead Space
  • Loading branch information
Brent-Call authored Jun 28, 2024
2 parents e86d24c + 5e0874b commit 184f81e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/achievements.js
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ dojo.declare("classes.managers.Achievements", com.nuclearunicorn.core.TabManager
description: "Have 500 kittens and no alicorns",
difficulty: "S",
condition: function(){
return (this.game.resPool.get("kittens").value > 500 && this.game.resPool.get("alicorn").value == 0);
return (this.game.resPool.get("kittens").value >= 500 && this.game.resPool.get("alicorn").value == 0);
}
},{
name: "ghostInTheMachine",
Expand Down

0 comments on commit 184f81e

Please sign in to comment.