mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-28 09:36:27 -04:00
Fix code style
This commit is contained in:
parent
8ee3c9a4a6
commit
8069cbdf7d
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue