Fix bad is_ground_content across all mods

This commit is contained in:
Wuzzy 2017-01-04 22:36:51 +01:00
parent af36c9876c
commit 7e980234ce
32 changed files with 161 additions and 52 deletions

View file

@ -63,6 +63,7 @@ function mesecon:register_pressure_plate(offstate, onstate, description, texture
selection_box = pp_box_off,
node_box = pp_box_off,
groups = {snappy = 2, oddly_breakable_by_hand = 3},
is_ground_content = false,
description = description,
pressureplate = ppspec,
on_timer = pp_on_timer,
@ -81,6 +82,7 @@ function mesecon:register_pressure_plate(offstate, onstate, description, texture
selection_box = pp_box_on,
node_box = pp_box_on,
groups = {snappy = 2, oddly_breakable_by_hand = 3, not_in_creative_inventory = 1},
is_ground_content = false,
drop = offstate,
pressureplate = ppspec,
on_timer = pp_on_timer,