"AKSubmission/git@gitlab.fachschaften.org:kif/akplanning.git" did not exist on "505a60502aba0344071872d0a5963f6de6702ccf"
Select Git revision
guidelines_matrix.md
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
init.lua 609 B
kif = {}
local MP = minetest.get_modpath("kif_custom")
-- some items don't have recipes. fill them in
dofile(MP.."/missing_recipes.lua")
-- make some advtrains recipes craftable from survival
dofile(MP.."/advtrains/survival_recipes.lua")
-- make trains ignore microblocks and some others
dofile(MP.."/advtrains/ignore_collisions.lua")
-- warning message for default password (if set)
if minetest.settings:get("default_password") then
dofile(MP.."/default_password_warn.lua")
end
-- /spawn command
dofile(MP.."/chat/spawn.lua")
-- by popular demand
dofile(MP.."/additional_stuff/salad_pickaxe.lua")