mirror of
https://github.com/SmallJoker/exchange_shop.git
synced 2025-07-12 21:30:28 +02:00
Better migrate options, fix 'default' dependency
This commit is contained in:
23
init.lua
23
init.lua
@ -5,23 +5,34 @@ exchange_shop.shopname = "exchange_shop:shop"
|
||||
local modpath = minetest.get_modpath("exchange_shop")
|
||||
local has_currency = minetest.get_modpath("currency")
|
||||
local has_bitchange = minetest.get_modpath("bitchange")
|
||||
local migrate_currency = true -- TODO testing!
|
||||
local slow_migrate_currency = false
|
||||
|
||||
-- Currency migrate options
|
||||
exchange_shop.migrate = {
|
||||
use_lbm = false,
|
||||
-- ^ Runs once on each unique loaded mapblock
|
||||
on_interact = true
|
||||
-- ^ Converts shop nodes "on the fly"
|
||||
}
|
||||
|
||||
|
||||
if has_bitchange then
|
||||
minetest.register_alias("exchange_shop:shop", "bitchange:shop")
|
||||
exchange_shop.shopname = "bitchange:shop"
|
||||
else
|
||||
minetest.register_alias("bitchange:shop", "exchange_shop:shop")
|
||||
dofile(modpath .. "/shop_functions.lua")
|
||||
dofile(modpath .. "/shop.lua")
|
||||
end
|
||||
|
||||
if has_currency then
|
||||
if migrate_currency then
|
||||
dofile(modpath .. "/currency_migrate.lua")
|
||||
end
|
||||
if slow_migrate_currency then
|
||||
local new_groups = table.copy(minetest.registered_nodes["currency:shop"].groups)
|
||||
new_groups.not_in_creative_inventory = 1
|
||||
minetest.override_item("currency:shop", {
|
||||
groups = new_groups
|
||||
})
|
||||
|
||||
dofile(modpath .. "/currency_migrate.lua")
|
||||
if exchange_shop.migrate.on_interact then
|
||||
dofile(modpath .. "/currency_override.lua")
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user