minetest.auth_reload - Uberi/MineTest-API GitHub Wiki

minetest.auth_reload

Description

This calls the authentication handler. Can also be accessed with the chatcommand /auth_reload

Syntax

auth_reload()

Examples

local pos = {x=1,y=2,z=3}
local string = "hello world"
minetest.after(3.5, function(param)
	print("3.5 seconds later, we can do " .. param.string .. " at " ..
	minetest.pos_to_string(param.pos))
end, {pos=pos, string=string})
⚠️ **GitHub.com Fallback** ⚠️