Skip to content
Snippets Groups Projects
Unverified Commit b8512529 authored by Hugo Locurcio's avatar Hugo Locurcio
Browse files

Make ores slower to mine and non-minable with wooden tools

This closes #30.
parent 77dcac78
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Brazilian and Dutch translations.
### Changed
- Ores are now slower to mine and cannot be mined using wooden tools anymore.
### Deprecated
- Deprecated hoes to follow Minetest Game's deprecation of hoes
......
......@@ -75,7 +75,7 @@ local function add_ore(modname, description, mineral_name, oredef)
minetest.register_node(modname .. ":mineral_" .. mineral_name, {
description = S("%s Ore"):format(S(description)),
tiles = {"default_stone.png^" .. modname .. "_mineral_" .. mineral_name .. ".png"},
groups = {cracky = 3},
groups = {cracky = 2},
sounds = default_stone_sounds,
drop = lump_item
})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment