mirror of
https://github.com/minetest-mods/hbsprint.git
synced 2024-12-22 21:32:24 +01:00
fix occasional crash possibly due to unknown node
This commit is contained in:
parent
577e1a330b
commit
4539d965ed
5
init.lua
5
init.lua
@ -173,7 +173,10 @@ minetest.register_globalstep(function(dtime)
|
||||
hunger = tonumber(player:get_attribute("hunger_ng:hunger"))
|
||||
end
|
||||
if ground ~= nil then
|
||||
walkable = minetest.registered_nodes[ground.name].walkable
|
||||
local ground_def = minetest.registered_nodes[ground.name]
|
||||
if ground_def then
|
||||
walkable = minetest.registered_nodes[ground.name].walkable
|
||||
end
|
||||
end
|
||||
if player_stamina > 0 and hunger > 6 and walkable then
|
||||
start_sprint(player)
|
||||
|
Loading…
Reference in New Issue
Block a user