mirror of
https://github.com/minetest-mods/maptools.git
synced 2024-12-25 00:40:20 +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,
|
pointable = false,
|
||||||
light_source = 15,
|
light_source = 15,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
buildable_to = true,
|
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
||||||
@ -360,7 +359,6 @@ minetest.register_node("maptools:climb", {
|
|||||||
walkable = false,
|
walkable = false,
|
||||||
climbable = true,
|
climbable = true,
|
||||||
pointable = false,
|
pointable = false,
|
||||||
buildable_to = true,
|
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
drop = "",
|
drop = "",
|
||||||
@ -409,7 +407,7 @@ minetest.register_node("maptools:smoke", {
|
|||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
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", {
|
minetest.register_node("maptools:ladder", {
|
||||||
|
Loading…
Reference in New Issue
Block a user