1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-06-28 14:16:06 +02:00

Added maptools:chest into mod and tsm_pyramids

- Added node maptools:chest which is now used in tsm_pyramids
- Preparing merge conflicts
This commit is contained in:
LeMagnesium
2015-03-21 23:15:05 +01:00
parent 172c2330eb
commit ed679b04d0
3 changed files with 16 additions and 1 deletions

View File

@ -589,3 +589,17 @@ minetest.register_node("maptools:unbreakable_rail_power", {
},
},
})
local chestdef = minetest.registered_nodes["default:chest"]
minetest.register_node("maptools:chest",{
description = "Chest",
tiles = chestdef.tiles,
stack_max = 1000,
paramtype2 = "facedir",
on_construct = chestdef.on_construct,
on_metadata_inventory_move = chestdef.on_metadata_inventory_move,
on_metadata_inventory_put = chestdef.on_metadata_inventory_put,
on_metadata_inventory_take = chestdef.on_metadata_inventory_take,
groups = {unbreakable = 1},
})