diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2017-08-28 12:33:25 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2017-08-28 12:33:25 +0100 |
commit | df1aa7fad3e7af030ee6e260b6ec719af727ff0e (patch) | |
tree | 8ed10f95c13c48dc4968fe9d0e57dd594febe39d /cotton.lua | |
parent | 94b155bc231bb42b8a18a8d5afa82ae0011ce39b (diff) |
added minlight maxlight to api and growing routine
Diffstat (limited to 'cotton.lua')
-rw-r--r-- | cotton.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,7 +8,7 @@ minetest.register_node("farming:seed_cotton", { inventory_image = "farming_cotton_seed.png", wield_image = "farming_cotton_seed.png", drawtype = "signlike", - groups = {seed = 1, snappy = 3, attached_node = 1}, + groups = {seed = 1, snappy = 3, attached_node = 1, flammable = 4}, paramtype = "light", paramtype2 = "wallmounted", walkable = false, @@ -75,7 +75,7 @@ local crop_def = { drop = "", selection_box = farming.select, groups = { - snappy = 3, flammable = 2, plant = 1, attached_node = 1, + snappy = 3, flammable = 4, plant = 1, attached_node = 1, not_in_creative_inventory = 1, growing = 1 }, sounds = default.node_sound_leaves_defaults() |