Fixed crash problem

master
Gabriel Pérez-Cerezo 2016-10-05 15:27:16 +02:00
parent cacd0da431
commit 307b4048ac
No known key found for this signature in database
GPG Key ID: 90422B01A46D0B3E
1 changed files with 4 additions and 1 deletions

View File

@ -8,6 +8,9 @@ end)
function advtrains.set_trainhud(name, text)
local hud = advtrains.hud[name]
local player=minetest.get_player_by_name(name)
if not player then
return
end
if not hud then
hud = {}
advtrains.hud[name] = hud
@ -53,4 +56,4 @@ function advtrains.hud_train_format(train, flip)
elseif vel>0 then
return firstLine.."\n"..secondLine.."\nPress up to accelerate, down to decelerate, sneak to stop."
end
end
end