Reduce drippingwater HP to 1

This commit is contained in:
Wuzzy 2017-01-06 02:51:12 +01:00
parent bdc66c8c48
commit 6d68388e19
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ math.randomseed(3)
--water
minetest.register_entity("drippingwater:drop_water", {
hp_max = 2000,
hp_max = 1,
physical = true,
collisionbox = {0,0,0,0,0,0},
visual = "cube",
@ -48,7 +48,7 @@ minetest.register_entity("drippingwater:drop_water", {
--lava
minetest.register_entity("drippingwater:drop_lava", {
hp_max = 2000,
hp_max = 1,
physical = true,
collisionbox = {0,0,0,0,0,0},
visual = "cube",