Add mod support for x_farming and x_tumbleweed
This commit is contained in:
parent
aef135c7ae
commit
acb2c6357b
|
@ -73,4 +73,5 @@ read_globals = {
|
||||||
"walls",
|
"walls",
|
||||||
"doors",
|
"doors",
|
||||||
"xpanes",
|
"xpanes",
|
||||||
|
"XTumbleweed",
|
||||||
}
|
}
|
||||||
|
|
|
@ -107,7 +107,8 @@
|
||||||
"skins",
|
"skins",
|
||||||
"Everness",
|
"Everness",
|
||||||
"walls",
|
"walls",
|
||||||
"stairs"
|
"stairs",
|
||||||
|
"XTumbleweed"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
12
init.lua
12
init.lua
|
@ -170,6 +170,18 @@ if Everness.settings.features.everness_feature_sneak_pickup then
|
||||||
dofile(path .. '/sneak_pickup.lua')
|
dofile(path .. '/sneak_pickup.lua')
|
||||||
end
|
end
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Mod Support
|
||||||
|
--
|
||||||
|
|
||||||
|
if minetest.get_modpath('x_farming') then
|
||||||
|
dofile(path .. '/mod_support_x_farming.lua')
|
||||||
|
end
|
||||||
|
|
||||||
|
if minetest.get_modpath('x_tumbleweed') and minetest.global_exists('XTumbleweed') then
|
||||||
|
dofile(path .. '/mod_support_x_tumbleweed.lua')
|
||||||
|
end
|
||||||
|
|
||||||
local mod_end_time = (minetest.get_us_time() - mod_start_time) / 1000000
|
local mod_end_time = (minetest.get_us_time() - mod_start_time) / 1000000
|
||||||
|
|
||||||
print('[Mod] everness loaded.. [' .. mod_end_time .. 's]')
|
print('[Mod] everness loaded.. [' .. mod_end_time .. 's]')
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
--[[
|
||||||
|
Everness. Never ending discovery in Everness mapgen.
|
||||||
|
Copyright (C) 2023 SaKeL <juraj.vajda@gmail.com>
|
||||||
|
|
||||||
|
This library is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 2.1 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This library is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public
|
||||||
|
License along with this library; if not, write to juraj.vajda@gmail.com
|
||||||
|
--]]
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Recipes
|
||||||
|
--
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'x_farming:bonemeal 4',
|
||||||
|
recipe = {
|
||||||
|
{ 'everness:bone' }
|
||||||
|
}
|
||||||
|
})
|
|
@ -0,0 +1,40 @@
|
||||||
|
--[[
|
||||||
|
Everness. Never ending discovery in Everness mapgen.
|
||||||
|
Copyright (C) 2023 SaKeL <juraj.vajda@gmail.com>
|
||||||
|
|
||||||
|
This library is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 2.1 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This library is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public
|
||||||
|
License along with this library; if not, write to juraj.vajda@gmail.com
|
||||||
|
--]]
|
||||||
|
|
||||||
|
local allowed_biomes = {}
|
||||||
|
|
||||||
|
if Everness.settings.biomes.everness_forsaken_desert.enabled then
|
||||||
|
table.insert(allowed_biomes, 'everness_forsaken_desert')
|
||||||
|
end
|
||||||
|
|
||||||
|
if Everness.settings.biomes.everness_forsaken_desert_ocean.enabled then
|
||||||
|
table.insert(allowed_biomes, 'everness_forsaken_desert_ocean')
|
||||||
|
end
|
||||||
|
|
||||||
|
if Everness.settings.biomes.everness_forsaken_desert_under.enabled then
|
||||||
|
table.insert(allowed_biomes, 'everness_forsaken_desert_under')
|
||||||
|
end
|
||||||
|
|
||||||
|
if Everness.settings.biomes.everness_baobab_savanna.enabled then
|
||||||
|
table.insert(allowed_biomes, 'everness_baobab_savanna')
|
||||||
|
end
|
||||||
|
|
||||||
|
if #allowed_biomes > 0 then
|
||||||
|
XTumbleweed:add_allowed_biome(allowed_biomes)
|
||||||
|
end
|
||||||
|
|
Ŝarĝante…
Reference in New Issue