Code cleaning

This commit is contained in:
Jean-Patrick Guerrero
2021-01-31 00:01:44 +01:00
parent 3dc8e038f3
commit 88c20f8a3b
3 changed files with 11 additions and 16 deletions

View File

@ -6,10 +6,6 @@ i3.new_tab {
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 {
@ -20,10 +16,6 @@ i3.new_tab {
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 {
@ -54,8 +46,4 @@ i3.override_tab("test2", {
formspec = function(player, data, fs)
fs("label[3,1;Override!]")
end,
fields = function(player, data, fields)
i3.set_fs(player)
end,
})