forked from minetest-mods/moreores
		
	Make ores slower to mine and non-minable with wooden tools
This closes #30.
This commit is contained in:
		@@ -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
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								init.lua
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								init.lua
									
									
									
									
									
								
							@@ -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
 | 
			
		||||
		})
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user