2021-03-09 21:43:25 +01:00
|
|
|
--[[
|
2021-03-18 11:34:20 +01:00
|
|
|
This mod implements the API to register digging groups for mcl_autogroup. The
|
|
|
|
rest of the mod is implemented and documented in the mod _mcl_autogroup.
|
2021-03-09 21:43:25 +01:00
|
|
|
|
2021-03-18 11:34:20 +01:00
|
|
|
The mod is split up into two parts, mcl_autogroup and _mcl_autogroup.
|
|
|
|
mcl_autogroup contains the API functions used to register custom digging groups.
|
|
|
|
_mcl_autogroup contains most of the code. The leading underscore in the name
|
|
|
|
"_mcl_autogroup" is used to force Minetest to load that part of the mod as late
|
|
|
|
as possible. Minetest loads mods in reverse alphabetical order.
|
2021-03-09 21:43:25 +01:00
|
|
|
--]]
|
|
|
|
mcl_autogroup = {}
|
2021-03-11 15:06:30 +01:00
|
|
|
mcl_autogroup.registered_diggroups = {}
|
2021-03-09 21:43:25 +01:00
|
|
|
|
2021-03-11 15:06:30 +01:00
|
|
|
function mcl_autogroup.register_diggroup(group, def)
|
|
|
|
mcl_autogroup.registered_diggroups[group] = def or {}
|
2021-03-09 21:43:25 +01:00
|
|
|
end
|