Skip to content

Commit

Permalink
Fix wrong variable name, oops.
Browse files Browse the repository at this point in the history
  • Loading branch information
KirkMcDonald committed Oct 19, 2024
1 parent d0932ce commit 1cfecf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ class FactorySpecification {
}
isValidPriorityKey(key) {
if (key.startsWith(DISABLED_RECIPE_PREFIX)) {
let itemKey = recipeKey.slice(DISABLED_RECIPE_PREFIX.length)
let itemKey = key.slice(DISABLED_RECIPE_PREFIX.length)
return this.items.has(itemKey)
}
let recipe = this.recipes.get(key)
Expand Down

0 comments on commit 1cfecf1

Please sign in to comment.