Add fix to moreores mod...
https://github.com/AntumMT/mod-moreores/tree/ae59578
This commit is contained in:
parent
e702a3fc5c
commit
c5e327dd57
@ -553,7 +553,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
|
||||
[patch.mobs_animal]: https://github.com/AntumMT/mod-mobs_animal/tree/61f74e2
|
||||
[patch.mobs_redo]: https://github.com/AntumMT/mod-mobs_redo/tree/12e9367
|
||||
[patch.moreblocks]: https://github.com/AntumMT/mod-moreblocks/tree/6dda839
|
||||
[patch.moreores]: https://github.com/AntumMT/mod-moreores/tree/3697850
|
||||
[patch.moreores]: https://github.com/AntumMT/mod-moreores/tree/ae59578
|
||||
[patch.mydoors]: https://github.com/AntumMT/mp-mydoors/tree/f270a42
|
||||
[patch.mysheetmetal]: https://github.com/AntumMT/mod-mysheetmetal/tree/2ffb3a2
|
||||
[patch.nether]: https://github.com/AntumMT/mod-nether/tree/7a84ddd
|
||||
|
@ -67,6 +67,13 @@ local function get_recipe(material, item)
|
||||
{"", "group:stick", ""},
|
||||
}
|
||||
end
|
||||
if item == "hoe" then
|
||||
return {
|
||||
{material, material, ""},
|
||||
{"", "group:stick", ""},
|
||||
{"", "group:stick", ""},
|
||||
}
|
||||
end
|
||||
if item == "block" then
|
||||
return {
|
||||
{material, material, material},
|
||||
@ -327,8 +334,8 @@ local oredefs = {
|
||||
crumbly = {times = {[1] = 1.10, [2] = 0.40, [3] = 0.25}, uses = t_uses.shovel_silver, maxlevel = 1},
|
||||
},
|
||||
axe = {
|
||||
choppy = {times = {[1] = 2.50, [2] = 0.80, [3] = 0.50}, t_uses.axe_silver = 100, maxlevel = 1},
|
||||
fleshy = {times = {[2] = 1.10, [3] = 0.60}, t_uses.axe_silver = 100, maxlevel = 1}
|
||||
choppy = {times = {[1] = 2.50, [2] = 0.80, [3] = 0.50}, uses = t_uses.axe_silver, maxlevel = 1},
|
||||
fleshy = {times = {[2] = 1.10, [3] = 0.60}, uses = t_uses.axe_silver, maxlevel = 1}
|
||||
},
|
||||
sword = {
|
||||
fleshy = {times = {[2] = 0.70, [3] = 0.30}, uses = t_uses.sword_silver, maxlevel = 1},
|
||||
|
Loading…
x
Reference in New Issue
Block a user