diff options
author | FaceDeer <derksenmobile@gmail.com> | 2017-01-02 20:07:15 -0700 |
---|---|---|
committer | FaceDeer <derksenmobile@gmail.com> | 2017-01-02 20:07:15 -0700 |
commit | c1a090137c0f8c35d984c3ca0bafc3dde8d1b872 (patch) | |
tree | a5d634fb024324a23007d173817a6e5e9a389cbd /node_builders.lua | |
parent | 711c43b9649e302f4bc7e422031d5f3d59c248e8 (diff) |
making digtron nodes diggable by hand. Also extracting controller code in prep for an autonomous controller
Diffstat (limited to 'node_builders.lua')
-rw-r--r-- | node_builders.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node_builders.lua b/node_builders.lua index 7a8cd00..cabb8f7 100644 --- a/node_builders.lua +++ b/node_builders.lua @@ -3,7 +3,7 @@ -- Builds objects in the targeted node. This is a complicated beastie. minetest.register_node("digtron:builder", { description = "Builder Unit", - groups = {cracky = 3, stone = 1, digtron = 4}, + groups = {cracky = 3, oddly_breakable_by_hand=3, digtron = 4}, drop = "digtron:builder", sounds = default.node_sound_metal_defaults(), paramtype2= 'facedir', |