Skip to content

Commit

Permalink
Bringing RN requirement in line with description and Dead Space
Browse files Browse the repository at this point in the history
  • Loading branch information
PG-Fuury authored Jun 27, 2024
1 parent e86d24c commit 5e0874b
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 5e0874b

Please sign in to comment.