Skip to content
This repository has been archived by the owner on Oct 25, 2022. It is now read-only.

Commit

Permalink
fix: Not enough festivals
Browse files Browse the repository at this point in the history
  • Loading branch information
oliversalzburg committed May 22, 2022
1 parent 2841a89 commit 4472764
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/userscript/source/Engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1614,7 +1614,7 @@ export class Engine {
4000 * (craftManager.getTickVal(craftManager.getResource("parchment"), true) as number) >
2500;

if (!(catpowProfitable && cultureProfitable && parchProfitable)) {
if (!catpowProfitable && !cultureProfitable && !parchProfitable) {
return;
}

Expand Down

0 comments on commit 4472764

Please sign in to comment.