diff --git a/init.lua b/init.lua index 98df888..470d203 100644 --- a/init.lua +++ b/init.lua @@ -78,6 +78,8 @@ dofile(minetest.get_modpath("airutils") .. DIR_DELIM .. "texture_management.lua" dofile(minetest.get_modpath("airutils") .. DIR_DELIM .. "attach_extern_ent.lua") if airutils._use_signs_api then dofile(minetest.get_modpath("airutils") .. DIR_DELIM .. "text.lua") end +airutils.splash_texture = "airutils_splash.png" + local is_biofuel_installed = false if biomass then if biomass.convertible_groups then is_biofuel_installed = true end diff --git a/textures/airutils_splash.png b/textures/airutils_splash.png new file mode 100644 index 0000000..5760a7f Binary files /dev/null and b/textures/airutils_splash.png differ diff --git a/water_splash.lua b/water_splash.lua index 5b2574a..f4b0723 100644 --- a/water_splash.lua +++ b/water_splash.lua @@ -31,7 +31,7 @@ function airutils.add_splash(pos, yaw, x_pos) local direction = yaw local spl_pos = vector.new(pos) - water_particle(spl_pos, {x=0,y=0,z=0}) + --water_particle(spl_pos, {x=0,y=0,z=0}) --right local move = x_pos/10