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

Commit

Permalink
fix: Invalid unlocked check
Browse files Browse the repository at this point in the history
  • Loading branch information
oliversalzburg committed Jan 29, 2022
1 parent 409ada0 commit ef80b49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/userscript/source/BulkManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export class BulkManager {
continue;
}
// If the building isn't unlocked, skip it.
if (buildMetaData.unlocked) {
if (!buildMetaData.unlocked) {
continue;
}

Expand Down

0 comments on commit ef80b49

Please sign in to comment.