mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-20 22:33:16 -04:00
Merge 597d984452
into 4e20ed6153
This commit is contained in:
commit
1b8bce9b4d
1 changed files with 2 additions and 2 deletions
|
@ -1243,7 +1243,7 @@ minetest.register_node("default:lava_flowing", {
|
||||||
liquid_alternative_flowing = "default:lava_flowing",
|
liquid_alternative_flowing = "default:lava_flowing",
|
||||||
liquid_alternative_source = "default:lava_source",
|
liquid_alternative_source = "default:lava_source",
|
||||||
liquid_viscosity = LAVA_VISC,
|
liquid_viscosity = LAVA_VISC,
|
||||||
liquid_renewable = false,
|
liquid_renewable = true,
|
||||||
damage_per_second = 4*2,
|
damage_per_second = 4*2,
|
||||||
post_effect_color = {a=192, r=255, g=64, b=0},
|
post_effect_color = {a=192, r=255, g=64, b=0},
|
||||||
groups = {lava=3, liquid=2, hot=3, igniter=1, not_in_creative_inventory=1},
|
groups = {lava=3, liquid=2, hot=3, igniter=1, not_in_creative_inventory=1},
|
||||||
|
@ -1275,7 +1275,7 @@ minetest.register_node("default:lava_source", {
|
||||||
liquid_alternative_flowing = "default:lava_flowing",
|
liquid_alternative_flowing = "default:lava_flowing",
|
||||||
liquid_alternative_source = "default:lava_source",
|
liquid_alternative_source = "default:lava_source",
|
||||||
liquid_viscosity = LAVA_VISC,
|
liquid_viscosity = LAVA_VISC,
|
||||||
liquid_renewable = false,
|
liquid_renewable = true,
|
||||||
damage_per_second = 4*2,
|
damage_per_second = 4*2,
|
||||||
post_effect_color = {a=192, r=255, g=64, b=0},
|
post_effect_color = {a=192, r=255, g=64, b=0},
|
||||||
groups = {lava=3, liquid=2, hot=3, igniter=1},
|
groups = {lava=3, liquid=2, hot=3, igniter=1},
|
||||||
|
|
Loading…
Add table
Reference in a new issue