Skip to content

Commit

Permalink
fix on def beeing in creative inventory
Browse files Browse the repository at this point in the history
  • Loading branch information
AFCMS committed Jun 12, 2021
1 parent 692bf61 commit 3912928
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ end

if has_mcl_core then
--on_def.groups = {cracky = 2, mesecon_detector_off = 1, mesecon = 2}
on_def.groups = {handy = 1, mesecon_detector_on = 1, mesecon = 2}
on_def.groups = {handy = 1, mesecon_detector_on = 1, mesecon = 2, not_in_creative_inventory = 1}
else
on_def.groups = {cracky = 2, mesecon_detector_on = 1, mesecon = 2}
on_def.groups = {cracky = 2, mesecon_detector_on = 1, mesecon = 2, not_in_creative_inventory = 1}
end

minetest.register_node("mesecons_onlinedetector:online_detector_on", on_def)
Expand Down

0 comments on commit 3912928

Please sign in to comment.