mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-21 06:43:17 -04:00
Merge 48ab4dcaa2
into d546a5a1fa
This commit is contained in:
commit
74ec1d3a6a
3 changed files with 16 additions and 0 deletions
|
@ -59,3 +59,12 @@ minetest.register_craft({
|
|||
{"farming:cotton", "farming:cotton"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:straw",
|
||||
recipe = {
|
||||
{"farming:wheat", "farming:wheat", "farming:wheat"},
|
||||
{"farming:wheat", "farming:wheat", "farming:wheat"},
|
||||
{"farming:wheat", "farming:wheat", "farming:wheat"},
|
||||
}
|
||||
})
|
||||
|
|
|
@ -80,6 +80,13 @@ minetest.register_node("farming:desert_sand_soil_wet", {
|
|||
}
|
||||
})
|
||||
|
||||
minetest.register_node("farming:straw", {
|
||||
description = "Straw",
|
||||
drop = "farming:straw",
|
||||
tiles = {"farming_straw.png"},
|
||||
groups = {snappy=3},
|
||||
})
|
||||
|
||||
minetest.register_abm({
|
||||
nodenames = {"group:field"},
|
||||
interval = 15,
|
||||
|
|
BIN
mods/farming/textures/farming_straw.png
Normal file
BIN
mods/farming/textures/farming_straw.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 880 B |
Loading…
Add table
Reference in a new issue