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:
@ -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},
|
||||
})
|
||||
|
Reference in New Issue
Block a user