Fix code style

This commit is contained in:
luk3yx 2019-10-15 09:37:32 +13:00
parent 8ee3c9a4a6
commit 8069cbdf7d

View file

@ -21,9 +21,9 @@ minetest.register_on_joinplayer(function(player)
local name = player:get_player_name()
local info = minetest.get_player_information(name)
if info.formspec_version > 1 then
formspec = formspec .. 'background9[5,5;1,1;gui_formbg.png;true;10]'
formspec = formspec .. "background9[5,5;1,1;gui_formbg.png;true;10]"
else
formspec = formspec .. 'background[5,5;1,1;gui_formbg.png;true]'
formspec = formspec .. "background[5,5;1,1;gui_formbg.png;true]"
end
player:set_formspec_prepend(formspec)
end)