Merge branch 'master' of https://git.minetest.land/Wuzzy/MineClone2 into master

This commit is contained in:
Wuzzy 2020-12-06 21:15:39 +01:00
commit 1ab90c58a6
1 changed files with 3 additions and 0 deletions

View File

@ -723,6 +723,9 @@ local function animation(player, playername)
local chatter = touch_chatter_prevention[player] or 0
if mcl_portals.nether_portal_cooloff[player] or minetest.get_us_time() - chatter < TOUCH_CHATTER_TIME_US then
local pos = player:get_pos()
if not pos then
return
end
minetest.add_particlespawner({
amount = 1,
minpos = {x = pos.x - 0.1, y = pos.y + 1.4, z = pos.z - 0.1},