Reduce zipping partice count by 60%

The effect was overly robust and had a tendency to lag some
systems badly, especially with the new accelerated zipping that
can produce particles up to 3x as fast.
This commit is contained in:
Aaron Suen 2022-10-12 08:33:33 -04:00
parent cf6a9b18dc
commit 50cc8d78ef

View File

@ -27,7 +27,7 @@ local function sparkly(posa, posb)
local volume = (maxpos.x - minpos.x + 1) * (maxpos.y - minpos.y + 1)
* (maxpos.z - minpos.z + 1)
minetest.add_particlespawner({
amount = 5 * volume,
amount = 2 * volume,
time = 0.25,
minpos = minpos,
maxpos = maxpos,