Skip to content
Snippets Groups Projects
Commit 3ed865d9 authored by Jeija's avatar Jeija
Browse files

Fix Bug: Mesecons cannot be digged due to a collisionbox failure

parent db26adca
No related branches found
No related tags found
No related merge requests found
......@@ -110,6 +110,7 @@ minetest.register_node("mesecons:mesecon_off", {
walkable = false,
selection_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
},
groups = {dig_immediate=3},
description="Mesecons",
......@@ -123,6 +124,7 @@ minetest.register_node("mesecons:mesecon_on", {
walkable = false,
selection_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
},
groups = {dig_immediate=3},
drop = '"mesecons:mesecon_off" 1',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment