Don't drop unsoftened ores

Fixes inconsistencies with high-tier tools in custom mods
This commit is contained in:
Aaron Suen 2023-04-22 19:39:49 -04:00
parent 7950f62fde
commit c1d165031c
2 changed files with 3 additions and 1 deletions

View File

@ -72,7 +72,8 @@ for i = 1, nodecore.hard_stone_strata do
lodey = 1, lodey = 1,
cracky = i + 2, cracky = i + 2,
hard_stone = i hard_stone = i
} },
silktouch = false,
}) })
end end

View File

@ -77,6 +77,7 @@ for i = 1, nodecore.hard_stone_strata do
light_source = 1, light_source = 1,
drop_in_place = modname .. ((i > 1) drop_in_place = modname .. ((i > 1)
and (":stone_" .. (i - 1)) or ":stone"), and (":stone_" .. (i - 1)) or ":stone"),
silktouch = false,
sounds = nodecore.sounds("nc_terrain_stony") sounds = nodecore.sounds("nc_terrain_stony")
}) })
end end