From 0dfac3f48418a54a0119d445202deb94aed78845 Mon Sep 17 00:00:00 2001 From: Zefram Date: Wed, 30 Jul 2014 20:25:35 +0100 Subject: [PATCH] Make granite harder than regular stone In real life granite is renowned for its hardness. --- extranodes/init.lua | 2 +- technic/machines/LV/cnc_nodes.lua | 2 +- technic_worldgen/nodes.lua | 2 +- 3 files changed, 3 insertions(+), 3 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..5eaa40b 100644 --- a/technic/machines/LV/cnc_nodes.lua +++ b/technic/machines/LV/cnc_nodes.lua @@ -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 29ea5fb..3b0ad99 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(), })