1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-29 07:50:35 +02:00

Fixed dye's research for group colors

- Flowers are registered with their special group colors
This commit is contained in:
LeMagnesium 2015-03-24 19:16:13 +01:00
parent a8d31e1f72
commit 4fff523d13

View File

@ -16,7 +16,7 @@ minetest.register_alias("flowers:flower_viola", "flowers:viola")
--- Fleur Simple (une case) --- --- Fleur Simple (une case) ---
------------------------------- -------------------------------
local function add_simple_flower(name, desc, image, color) local function add_simple_flower(name, desc, image, color, f_groups)
minetest.register_node("flowers:"..name.."", { minetest.register_node("flowers:"..name.."", {
description = desc, description = desc,
drawtype = "plantlike", drawtype = "plantlike",
@ -27,7 +27,7 @@ local function add_simple_flower(name, desc, image, color)
paramtype = "light", paramtype = "light",
walkable = false, walkable = false,
stack_max = 99, stack_max = 99,
groups = {snappy=3,flammable=2,flower=1,flora=1,attached_node=1,dig_by_water=1,color=1}, groups = f_groups,
sounds = default.node_sound_leaves_defaults(), sounds = default.node_sound_leaves_defaults(),
selection_box = { selection_box = {
type = "fixed", type = "fixed",
@ -37,10 +37,10 @@ local function add_simple_flower(name, desc, image, color)
end end
add_simple_flower("dandelion_yellow", "Yellow Dandelion", "flowers_dandelion_yellow", "color_yellow") add_simple_flower("dandelion_yellow", "Yellow Dandelion", "flowers_dandelion_yellow", "color_yellow",{snappy=3,flammable=2,flower=1,flora=1,attached_node=1,dig_by_water=1,color_yellow=1})
add_simple_flower("geranium", "Blue Geranium", "flowers_geranium", "color_blue") add_simple_flower("geranium", "Blue Geranium", "flowers_geranium", "color_blue",{snappy=3,flammable=2,flower=1,flora=1,attached_node=1,dig_by_water=1,color_blue=1})
add_simple_flower("rose", "Rose", "flowers_rose", "color_red") add_simple_flower("rose", "Rose", "flowers_rose", "color_red",{snappy=3,flammable=2,flower=1,flora=1,attached_node=1,dig_by_water=1,color_red=1})
add_simple_flower("tulip", "Orange Tulip", "flowers_tulip", "color_orange") add_simple_flower("tulip", "Orange Tulip", "flowers_tulip", "color_orange",{snappy=3,flammable=2,flower=1,flora=1,attached_node=1,dig_by_water=1,color_orange=1})
--------------------------------------------- ---------------------------------------------
----------------- OLD SYSTEM ---------------- ----------------- OLD SYSTEM ----------------