diff options
author | Zefram <zefram@fysh.org> | 2014-07-30 20:28:30 +0100 |
---|---|---|
committer | Zefram <zefram@fysh.org> | 2014-07-30 20:28:30 +0100 |
commit | 12d0c6522bbca906910aae0321cbaa7eb48db8c2 (patch) | |
tree | 6bd295a046d8a347eafca69ab696f3319af4e927 | |
parent | 0dfac3f48418a54a0119d445202deb94aed78845 (diff) |
Correct breakability of sandstone CNC nodes
default:sandstone has cracky=3, but the CNC nodes had cracky=2.
-rw-r--r-- | technic/machines/LV/cnc_nodes.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/technic/machines/LV/cnc_nodes.lua b/technic/machines/LV/cnc_nodes.lua index 5eaa40b..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")) |