typo fixed

This commit is contained in:
Alexsandro Percy 2024-03-03 21:25:54 -03:00
parent 5e8e9e583d
commit 056fe7160c
1 changed files with 2 additions and 2 deletions

View File

@ -79,8 +79,8 @@ local is_biofuel_installed = false
if biomass then
if biomass.convertible_groups then is_biofuel_installed = true end
end
local enable_internal_bioduel = minetest.settings:get_bool('airutils.force_enable_biofuel')
if not is_biofuel_installed or enable_internal_bioduel then
local enable_internal_biofuel = minetest.settings:get_bool('airutils.force_enable_biofuel')
if not is_biofuel_installed or enable_internal_biofuel then
dofile(minetest.get_modpath("airutils") .. DIR_DELIM .. "airutils_biofuel.lua")
end