From 972e39b1c0236f21ae639f8d75b268b572779e98 Mon Sep 17 00:00:00 2001 From: oilboi <47129783+oilboi@users.noreply.github.com> Date: Sun, 24 May 2020 02:09:34 -0400 Subject: [PATCH] Finally fix client not initializing fully, randomly :) --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 0fb0d15..7c52e45 100644 --- a/init.lua +++ b/init.lua @@ -33,7 +33,7 @@ end --we must delay initialization until the player exists in the world local function recursive_startup_attempt() local ready_to_go = minetest.localplayer - if ready_to_go then + if ready_to_go and minetest.get_node_or_nil(minetest.localplayer:get_pos()) then --good to begin initialize_all() else -- 2.44.0