diff --git a/mods/CORE/mcl_particles/textures/mcl_particles_bubble.png b/mods/CORE/mcl_particles/textures/mcl_particles_bubble.png index c64ceea39..a29c95bbc 100644 Binary files a/mods/CORE/mcl_particles/textures/mcl_particles_bubble.png and b/mods/CORE/mcl_particles/textures/mcl_particles_bubble.png differ diff --git a/mods/CORE/mcl_particles/textures/mcl_particles_droplet_bottle.png b/mods/CORE/mcl_particles/textures/mcl_particles_droplet_bottle.png new file mode 100644 index 000000000..77eec0691 Binary files /dev/null and b/mods/CORE/mcl_particles/textures/mcl_particles_droplet_bottle.png differ diff --git a/mods/CORE/mcl_particles/textures/mcl_particles_effect.png b/mods/CORE/mcl_particles/textures/mcl_particles_effect.png new file mode 100644 index 000000000..259e03c5d Binary files /dev/null and b/mods/CORE/mcl_particles/textures/mcl_particles_effect.png differ diff --git a/mods/ITEMS/mcl_potions/lingering.lua b/mods/ITEMS/mcl_potions/lingering.lua index c74143233..cb327accc 100644 --- a/mods/ITEMS/mcl_potions/lingering.lua +++ b/mods/ITEMS/mcl_potions/lingering.lua @@ -29,9 +29,9 @@ minetest.register_globalstep(function(dtime) local d = 4 * (vals.timer / 30.0) local texture if vals.is_water then - texture = "mcl_potions_droplet.png" + texture = "mcl_particles_droplet_bottle.png" else - texture = "mcl_potions_sprite.png" + texture = "mcl_particles_effect.png" end minetest.add_particlespawner({ amount = 10 * d^2, @@ -141,11 +141,11 @@ minetest.register_entity(id.."_flying",{ add_lingering_effect(pos, color, def, name == "water") local texture, minacc, maxacc if name == "water" then - texture = "mcl_potions_droplet.png" + texture = "mcl_particles_droplet_bottle.png" minacc = {x=-0.2, y=-0.05, z=-0.2} maxacc = {x=0.2, y=0.05, z=0.2} else - texture = "mcl_potions_sprite.png" + texture = "mcl_particles_effect.png" minacc = {x=-0.2, y=0, z=-0.2} maxacc = {x=0.2, y=.05, z=0.2} end diff --git a/mods/ITEMS/mcl_potions/splash.lua b/mods/ITEMS/mcl_potions/splash.lua index 2f7fbf77f..fb47ebd8a 100644 --- a/mods/ITEMS/mcl_potions/splash.lua +++ b/mods/ITEMS/mcl_potions/splash.lua @@ -68,10 +68,10 @@ function mcl_potions.register_splash(name, descr, color, def) minetest.sound_play("mcl_potions_breaking_glass", {pos = pos, max_hear_distance = 16, gain = 1}) local texture, acc if name == "water" then - texture = "mcl_potions_droplet.png" + texture = "mcl_particles_droplet_bottle.png" acc = {x=0, y=-GRAVITY, z=0} else - texture = "mcl_potions_sprite.png" + texture = "mcl_particles_effect.png" acc = {x=0, y=0, z=0} end minetest.add_particlespawner({ diff --git a/mods/ITEMS/mcl_potions/textures/mcl_potions_droplet.png b/mods/ITEMS/mcl_potions/textures/mcl_potions_droplet.png deleted file mode 100644 index e85767d32..000000000 Binary files a/mods/ITEMS/mcl_potions/textures/mcl_potions_droplet.png and /dev/null differ diff --git a/mods/ITEMS/mcl_potions/textures/mcl_potions_sprite.png b/mods/ITEMS/mcl_potions/textures/mcl_potions_sprite.png deleted file mode 100644 index 17391b1fd..000000000 Binary files a/mods/ITEMS/mcl_potions/textures/mcl_potions_sprite.png and /dev/null differ