Fix incorrect particle name in mcl_potions

This commit is contained in:
Wuzzy 2020-08-19 17:07:53 +02:00
parent 9f43d6a5a5
commit 91d174b437
1 changed files with 2 additions and 2 deletions

View File

@ -555,7 +555,7 @@ function mcl_potions._use_potion(item, obj, color)
maxsize = 1,
collisiondetection = true,
vertical = false,
texture = "mcl_potions_sprite.png^[colorize:"..color..":127",
texture = "mcl_particles_effect.png^[colorize:"..color..":127",
})
end
@ -578,7 +578,7 @@ function mcl_potions._add_spawner(obj, color)
maxsize = 1,
collisiondetection = false,
vertical = false,
texture = "mcl_potions_sprite.png^[colorize:"..color..":127",
texture = "mcl_particles_effect.png^[colorize:"..color..":127",
})
end