mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-13 05:50:31 +01:00
[issue #23] Fix mithril fishing pole craft
I have unregistered homedecor:cobweb_corner and maked an alias to it with mobs:cobweb
This commit is contained in:
parent
54546b371a
commit
4aca6dc15e
4
mods/nalc/aliases.lua
Normal file
4
mods/nalc/aliases.lua
Normal file
|
@ -0,0 +1,4 @@
|
|||
-- Remove homedecor:cobweb_corner and make it as alias of mobs:cobweb
|
||||
if minetest.get_modpath("mobs_monster") and minetest.get_modpath("homedecor") then
|
||||
minetest.register_alias_force("homedecor:cobweb_corner", "mobs:cobweb")
|
||||
end
|
|
@ -22,5 +22,7 @@ dye?
|
|||
cherry_tree?
|
||||
nether?
|
||||
mobs_animal?
|
||||
mobs_monster?
|
||||
minercantile?
|
||||
diet?
|
||||
homedecor?
|
||||
|
|
|
@ -15,6 +15,9 @@ dofile(modpath.."/nodes.lua")
|
|||
-- Custom tools
|
||||
dofile(modpath.."/tools.lua")
|
||||
|
||||
-- Aliases
|
||||
dofile(modpath.."/aliases.lua")
|
||||
|
||||
local mods =
|
||||
{
|
||||
"witchcraft", "cotton", "technic",
|
||||
|
|
Loading…
Reference in New Issue
Block a user