Skip to content

Commit

Permalink
Fix furnace not diggable with stone pick
Browse files Browse the repository at this point in the history
  • Loading branch information
CasimirKaPazi committed Jun 3, 2017
1 parent 05545a1 commit 0e8061d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mods/default/furnace.lua
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ minetest.register_node("default:furnace", {
"default_furnace_side.png", "default_furnace_front.png"
},
paramtype2 = "facedir",
groups = {cracky=2},
groups = {cracky=3},
legacy_facedir_simple = true,
is_ground_content = false,
sounds = default.node_sound_stone_defaults(),
Expand Down Expand Up @@ -276,7 +276,7 @@ minetest.register_node("default:furnace_active", {
paramtype2 = "facedir",
light_source = 8,
drop = "default:furnace",
groups = {cracky=2, not_in_creative_inventory=1},
groups = {cracky=3, not_in_creative_inventory=1},
is_ground_content = false,
sounds = default.node_sound_stone_defaults(),

Expand Down

0 comments on commit 0e8061d

Please sign in to comment.