Skip to content

Commit 750f957

Browse files
CalinouEkdohibs
authored andcommittedJun 6, 2015
Improve water post effect color
1 parent 40e2b94 commit 750f957

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎mods/default/nodes.lua

+4-4
Original file line numberDiff line numberDiff line change
@@ -916,7 +916,7 @@ minetest.register_node("default:water_source", {
916916
liquid_alternative_flowing = "default:water_flowing",
917917
liquid_alternative_source = "default:water_source",
918918
liquid_viscosity = 1,
919-
post_effect_color = {a=64, r=100, g=100, b=200},
919+
post_effect_color = {a=120, r=30, g=60, b=90},
920920
groups = {water=3, liquid=3, puts_out_fire=1},
921921
})
922922

@@ -961,7 +961,7 @@ minetest.register_node("default:water_flowing", {
961961
liquid_alternative_flowing = "default:water_flowing",
962962
liquid_alternative_source = "default:water_source",
963963
liquid_viscosity = 1,
964-
post_effect_color = {a=64, r=100, g=100, b=200},
964+
post_effect_color = {a=120, r=30, g=60, b=90},
965965
groups = {water=3, liquid=3, puts_out_fire=1, not_in_creative_inventory=1},
966966
})
967967

@@ -1008,7 +1008,7 @@ minetest.register_node("default:river_water_source", {
10081008
liquid_viscosity = 1,
10091009
liquid_renewable = false,
10101010
liquid_range = 2,
1011-
post_effect_color = {a=64, r=100, g=178, b=200},
1011+
post_effect_color = {a=120, r=30, g=60, b=90},
10121012
groups = {water=3, liquid=3, puts_out_fire=1},
10131013
})
10141014

@@ -1055,7 +1055,7 @@ minetest.register_node("default:river_water_flowing", {
10551055
liquid_viscosity = 1,
10561056
liquid_renewable = false,
10571057
liquid_range = 2,
1058-
post_effect_color = {a=64, r=100, g=178, b=200},
1058+
post_effect_color = {a=120, r=30, g=60, b=90},
10591059
groups = {water=3, liquid=3, puts_out_fire=1, not_in_creative_inventory=1},
10601060
})
10611061

0 commit comments

Comments
 (0)
Please sign in to comment.