Erratum : The desired value was 1.5

- The desired value for acid's hurts was 1.5 Hp, so 3 units. Sorry.
This commit is contained in:
LeMagnesium 2014-11-18 20:09:39 +01:00
parent 76b1a12770
commit 45c8275af3
1 changed files with 2 additions and 2 deletions

View File

@ -1085,7 +1085,7 @@ minetest.register_node("default:acid_flowing", {
liquid_alternative_flowing = "default:acid_flowing",
liquid_alternative_source = "default:acid_source",
liquid_viscosity = WATER_VISC,
damage_per_second = 6,
damage_per_second = 3,
post_effect_color = {a = 120, r = 50, g = 90, b = 30},
groups = {water = 3, liquid = 3, puts_out_fire = 1, not_in_creative_inventory = 1},
})
@ -1117,7 +1117,7 @@ minetest.register_node("default:acid_source", {
liquid_alternative_flowing = "default:acid_flowing",
liquid_alternative_source = "default:acid_source",
liquid_viscosity = WATER_VISC,
damage_per_second = 6,
damage_per_second = 3,
post_effect_color = {a = 120, r = 50, g = 90, b = 30},
groups = {water = 3, liquid = 3, puts_out_fire = 1},
})