mirror of
https://github.com/minetest-mods/stained_glass.git
synced 2024-11-16 06:50:19 +01:00
use unified dyes on_construct handler
to set 256-color palette meta key on place
This commit is contained in:
parent
fef736edd6
commit
97c15ce2da
2
init.lua
2
init.lua
|
@ -55,6 +55,7 @@ minetest.register_node("stained_glass:stained_glass", {
|
|||
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3, not_in_creative_inventory=1, ud_param2_colorable = 1},
|
||||
sounds = default.node_sound_glass_defaults(),
|
||||
drop = "moreblocks:super_glow_glass",
|
||||
on_construct = unifieddyes.on_construct,
|
||||
after_dig_node = unifieddyes.after_dig_node,
|
||||
drop = "moreblocks:super_glow_glass"
|
||||
})
|
||||
|
@ -84,6 +85,7 @@ minetest.register_node("stained_glass:stained_trap_glass", {
|
|||
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3, not_in_creative_inventory=1, ud_param2_colorable = 1},
|
||||
sounds = default.node_sound_glass_defaults(),
|
||||
drop = "moreblocks:trap_super_glow_glass",
|
||||
on_construct = unifieddyes.on_construct,
|
||||
after_dig_node = unifieddyes.after_dig_node,
|
||||
drop = "moreblocks:trap_super_glow_glass"
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue
Block a user