mirror of
https://github.com/minetest-mods/maptools.git
synced 2024-12-24 08:20:21 +01:00
Map Tools nodes shouldn't be buildable_to. Make the post process of the smoke more opaque.
This commit is contained in:
parent
c979440808
commit
2a4f11ebf5
4
init.lua
4
init.lua
@ -318,7 +318,6 @@ minetest.register_node("maptools:lightbulb", {
|
||||
pointable = false,
|
||||
light_source = 15,
|
||||
paramtype = "light",
|
||||
buildable_to = true,
|
||||
sunlight_propagates = true,
|
||||
drop = "",
|
||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
||||
@ -360,7 +359,6 @@ minetest.register_node("maptools:climb", {
|
||||
walkable = false,
|
||||
climbable = true,
|
||||
pointable = false,
|
||||
buildable_to = true,
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
drop = "",
|
||||
@ -409,7 +407,7 @@ minetest.register_node("maptools:smoke", {
|
||||
paramtype = "light",
|
||||
drop = "",
|
||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
||||
post_effect_color = {a=127, r=127, g=127, b=127},
|
||||
post_effect_color = {a=192, r=96, g=96, b=96},
|
||||
})
|
||||
|
||||
minetest.register_node("maptools:ladder", {
|
||||
|
Loading…
Reference in New Issue
Block a user