Open Montandalar opened 3 years ago
The issue also occurs on older versions of Minetest. It's not a deprecated API in the engine, but a mistake in the conversion of blank_player_hud from a global function (bad practice I think) to a member of global variable Witt
. Simply changing line 116 in init.lua from blank_player_hud(player)
to Witt.blank_player_hud(player)
fixes the issue.
I assume this is some kind of deprecated API?