From 14c1c0500aab895ea241100169ac9e1b56b5780a Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Sat, 21 Nov 2020 18:44:51 -0800 Subject: [PATCH] =?utf8?q?Whitespace:=20tabs=20=E2=86=92=20spaces?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- init.lua | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/init.lua b/init.lua index 34800c3..6c7a583 100644 --- a/init.lua +++ b/init.lua @@ -1,26 +1,26 @@ minetest.register_node("pink_flower:pink_flower", { - description = "Pink carnation", - drawtype = "plantlike", - waving = 1, - tiles = {"pink_flower.png"}, - inventory_image = "pink_flower.png", - wield_image = "pink_flower.png", - sunlight_propagates = true, - paramtype = "light", - walkable = false, - buildable_to = true, - stack_max = 99, - groups = { - attached_node = 1, + description = "Pink carnation", + drawtype = "plantlike", + waving = 1, + tiles = {"pink_flower.png"}, + inventory_image = "pink_flower.png", + wield_image = "pink_flower.png", + sunlight_propagates = true, + paramtype = "light", + walkable = false, + buildable_to = true, + stack_max = 99, + groups = { + attached_node = 1, color_pink = 1, flammable = 1, - flora = 1, - flower = 1, - snappy = 3 + flora = 1, + flower = 1, + snappy = 3 }, - sounds = default.node_sound_leaves_defaults(), - selection_box = { - type = "fixed", - fixed = {-2 / 16, -0.5, -2 / 16, 2 / 16, 4 / 16, 2 / 16} - } + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "fixed", + fixed = {-2 / 16, -0.5, -2 / 16, 2 / 16, 4 / 16, 2 / 16} + } }) -- 2.44.1