Make lava instantly kill players (#692)
This commit is contained in:
parent
58c64c8a83
commit
52e4382359
1 changed files with 2 additions and 2 deletions
|
@ -1842,7 +1842,7 @@ minetest.register_node("default:lava_source", {
|
||||||
liquid_alternative_source = "default:lava_source",
|
liquid_alternative_source = "default:lava_source",
|
||||||
liquid_viscosity = 7,
|
liquid_viscosity = 7,
|
||||||
liquid_renewable = false,
|
liquid_renewable = false,
|
||||||
damage_per_second = 4 * 2,
|
damage_per_second = 30,
|
||||||
post_effect_color = {a = 191, r = 255, g = 64, b = 0},
|
post_effect_color = {a = 191, r = 255, g = 64, b = 0},
|
||||||
groups = {lava = 3, liquid = 2, igniter = 1},
|
groups = {lava = 3, liquid = 2, igniter = 1},
|
||||||
})
|
})
|
||||||
|
@ -1888,7 +1888,7 @@ minetest.register_node("default:lava_flowing", {
|
||||||
liquid_alternative_source = "default:lava_source",
|
liquid_alternative_source = "default:lava_source",
|
||||||
liquid_viscosity = 7,
|
liquid_viscosity = 7,
|
||||||
liquid_renewable = false,
|
liquid_renewable = false,
|
||||||
damage_per_second = 4 * 2,
|
damage_per_second = 30,
|
||||||
post_effect_color = {a = 191, r = 255, g = 64, b = 0},
|
post_effect_color = {a = 191, r = 255, g = 64, b = 0},
|
||||||
groups = {lava = 3, liquid = 2, igniter = 1,
|
groups = {lava = 3, liquid = 2, igniter = 1,
|
||||||
not_in_creative_inventory = 1},
|
not_in_creative_inventory = 1},
|
||||||
|
|
Loading…
Reference in a new issue