summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--extranodes/init.lua2
-rw-r--r--technic/machines/LV/cnc_nodes.lua4
-rw-r--r--technic_worldgen/nodes.lua2
3 files changed, 4 insertions, 4 deletions
diff --git a/extranodes/init.lua b/extranodes/init.lua
index 0d6f183..934193f 100644
--- a/extranodes/init.lua
+++ b/extranodes/init.lua
@@ -25,7 +25,7 @@ register_stair_slab_panel_micro("technic", "marble_bricks", "technic:marble_bric
0)
register_stair_slab_panel_micro("technic", "granite", "technic:granite",
- {cracky=3, not_in_creative_inventory=1},
+ {cracky=1, not_in_creative_inventory=1},
{"technic_granite.png"},
S("Granite"),
"granite",
diff --git a/technic/machines/LV/cnc_nodes.lua b/technic/machines/LV/cnc_nodes.lua
index 4835e49..b250bc8 100644
--- a/technic/machines/LV/cnc_nodes.lua
+++ b/technic/machines/LV/cnc_nodes.lua
@@ -42,7 +42,7 @@ technic.cnc.register_all("default:brick",
-- SANDSTONE
------------
technic.cnc.register_all("default:sandstone",
- {crumbly=2, cracky=2, not_in_creative_inventory=1},
+ {crumbly=2, cracky=3, not_in_creative_inventory=1},
{"default_sandstone.png"},
S("Sandstone"))
@@ -90,7 +90,7 @@ technic.cnc.register_all("technic:marble",
-- Granite
------------
technic.cnc.register_all("technic:granite",
- {cracky=3, not_in_creative_inventory=1},
+ {cracky=1, not_in_creative_inventory=1},
{"technic_granite.png"},
S("Granite"))
diff --git a/technic_worldgen/nodes.lua b/technic_worldgen/nodes.lua
index 20cf159..e4774ce 100644
--- a/technic_worldgen/nodes.lua
+++ b/technic_worldgen/nodes.lua
@@ -32,7 +32,7 @@ minetest.register_node( ":technic:granite", {
description = S("Granite"),
tiles = { "technic_granite.png" },
is_ground_content = true,
- groups = {cracky=3},
+ groups = {cracky=1},
sounds = default.node_sound_stone_defaults(),
})