Mise à jour de nalc_default :
- Ajout des barrières personnalisées qui ont été oubliées. - Modification de default:clay pour en stacker 200 maximum.
This commit is contained in:
parent
4e41695d4e
commit
7f51486de1
@ -6,6 +6,9 @@ dofile(modpath.."/functions.lua")
|
|||||||
-- Custom Nodes
|
-- Custom Nodes
|
||||||
dofile(modpath.."/nodes.lua")
|
dofile(modpath.."/nodes.lua")
|
||||||
|
|
||||||
|
-- Custom fences
|
||||||
|
dofile(modpath.."/fences.lua")
|
||||||
|
|
||||||
-- Custom mapgen ore generation
|
-- Custom mapgen ore generation
|
||||||
dofile(modpath.."/mapgen.lua")
|
dofile(modpath.."/mapgen.lua")
|
||||||
|
|
||||||
|
@ -1,16 +1,11 @@
|
|||||||
-- stick
|
-- stick
|
||||||
minetest.override_item(
|
minetest.override_item("default:stick", {stack_max = 1000})
|
||||||
"default:stick",
|
|
||||||
{
|
|
||||||
stack_max = 1000
|
|
||||||
})
|
|
||||||
|
|
||||||
-- clay_lump
|
-- clay_lump
|
||||||
minetest.override_item(
|
minetest.override_item("default:clay_lump", {stack_max = 200})
|
||||||
"default:clay_lump",
|
|
||||||
{
|
-- clay
|
||||||
stack_max = 200
|
minetest.override_item("default:clay", {stack_max = 200})
|
||||||
})
|
|
||||||
|
|
||||||
-- sand
|
-- sand
|
||||||
for _,t in pairs({"", "desert_", "silver_"}) do
|
for _,t in pairs({"", "desert_", "silver_"}) do
|
||||||
|
Loading…
Reference in New Issue
Block a user