Rename files

This commit is contained in:
Jean-Patrick Guerrero
2021-01-17 00:38:53 +01:00
parent 82b9a54980
commit ed3ab46846
3 changed files with 2 additions and 2 deletions

47
test_tabs.lua Normal file
View File

@ -0,0 +1,47 @@
i3.new_tab {
name = "test1",
description = "Test 1",
image = "i3_heart.png",
formspec = function(player, data, fs)
fs("label[3,1;Test 1]")
end,
fields = function(player, data, fields)
i3.set_fs(player)
end,
}
i3.new_tab {
name = "test2",
description = "Test 2",
image = "i3_mesepick.png",
formspec = function(player, data, fs)
fs("label[3,1;Test 2]")
end,
fields = function(player, data, fields)
i3.set_fs(player)
end,
}
i3.new_tab {
name = "test3",
description = "Test 3",
access = function(player, data)
local name = player:get_player_name()
if name == "singleplayer" then
return true
end
end,
formspec = function(player, data, fs)
fs("label[3,1;Test 3]")
end,
fields = function(player, data, fields)
i3.set_fs(player)
end,
}