Skip to content

Commit

Permalink
Fixing missing parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
KiwiHawk committed Nov 13, 2024
1 parent 4a72b00 commit e76e456
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions boblibrary/recipe-functions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ function bobmods.lib.recipe.set_category(recipe_name, category)
end
end

function bobmods.lib.recipe.allow_productivity
function bobmods.lib.recipe.allow_productivity()
if type(recipe_name) == "string" then
local recipe = data.raw.recipe[recipe_name]
if recipe then
Expand All @@ -344,7 +344,7 @@ function bobmods.lib.recipe.allow_productivity
end
end

function bobmods.lib.recipe.disallow_productivity
function bobmods.lib.recipe.disallow_productivity()
if type(recipe_name) == "string" then
local recipe = data.raw.recipe[recipe_name]
if recipe then
Expand Down

0 comments on commit e76e456

Please sign in to comment.