From 82c2477d70651202849de7b7dfc8b8c0e9fadedf Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Tue, 5 Mar 2019 18:04:19 +0000 Subject: [PATCH] Fix falling sand exploit again --- mods/mtg/default/nodes.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mods/mtg/default/nodes.lua b/mods/mtg/default/nodes.lua index e1b7b15..e520c46 100644 --- a/mods/mtg/default/nodes.lua +++ b/mods/mtg/default/nodes.lua @@ -528,21 +528,21 @@ minetest.register_node("default:permafrost_with_moss", { minetest.register_node("default:sand", { description = "Sand", tiles = {"default_sand.png"}, - groups = {crumbly = 3, falling_node = 1, sand = 1}, + groups = {crumbly = 3, sand = 1}, sounds = default.node_sound_sand_defaults(), }) minetest.register_node("default:desert_sand", { description = "Desert Sand", tiles = {"default_desert_sand.png"}, - groups = {crumbly = 3, falling_node = 1, sand = 1}, + groups = {crumbly = 3, sand = 1}, sounds = default.node_sound_sand_defaults(), }) minetest.register_node("default:silver_sand", { description = "Silver Sand", tiles = {"default_silver_sand.png"}, - groups = {crumbly = 3, falling_node = 1, sand = 1}, + groups = {crumbly = 3, sand = 1}, sounds = default.node_sound_sand_defaults(), }) @@ -550,7 +550,7 @@ minetest.register_node("default:silver_sand", { minetest.register_node("default:gravel", { description = "Gravel", tiles = {"default_gravel.png"}, - groups = {crumbly = 2, falling_node = 1}, + groups = {crumbly = 2}, sounds = default.node_sound_gravel_defaults(), drop = { max_items = 1, @@ -591,7 +591,7 @@ minetest.register_node("default:snow", { {-0.5, -0.5, -0.5, 0.5, -7 / 16, 0.5}, }, }, - groups = {crumbly = 3, falling_node = 1, snowy = 1, slippery = 2}, + groups = {crumbly = 3, snowy = 1, slippery = 2}, sounds = default.node_sound_snow_defaults(), on_construct = function(pos)