Make lava not renewable
This commit is contained in:
parent
e82c122822
commit
a4426e4bd4
@ -1216,6 +1216,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,
|
||||||
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},
|
||||||
@ -1247,6 +1248,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,
|
||||||
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…
Reference in New Issue
Block a user