diff options
| author | TenPlus1 <kinsellaja@yahoo.com> | 2018-03-08 15:44:44 +0000 | 
|---|---|---|
| committer | TenPlus1 <kinsellaja@yahoo.com> | 2018-03-08 15:44:44 +0000 | 
| commit | dc604a391596398d824429d374169cb72c576d68 (patch) | |
| tree | e4cc0fd4c5c8a669fc7a6bf5437ebc55b6adca2d /hemp.lua | |
| parent | 021677931bb034f235240c9754afa9aca8923b85 (diff) | |
added hemp block
Diffstat (limited to 'hemp.lua')
| -rw-r--r-- | hemp.lua | 17 | 
1 files changed, 17 insertions, 0 deletions
@@ -94,6 +94,23 @@ minetest.register_craft( {  	replacements = {{ "bucket:bucket_river_water", "bucket:bucket_empty"}}  }) +-- hemp block +minetest.register_node("farming:hemp_block", { +	description = S("Hemp Block"), +	tiles = {"farming_hemp_block.png"}, +	paramtype = "light", +	groups = {snappy = 1, oddly_breakable_by_hand = 1, flammable = 2} +}) + +minetest.register_craft( { +	output = "farming:hemp_block", +	recipe = { +		{"farming:hemp_fibre", "farming:hemp_fibre", "farming:hemp_fibre"}, +		{"farming:hemp_fibre", "farming:hemp_fibre", "farming:hemp_fibre"}, +		{"farming:hemp_fibre", "farming:hemp_fibre", "farming:hemp_fibre"} +	}, +}) +  -- paper  minetest.register_craft( {  	output = "default:paper",  | 
