epic_skybox/chatcommands.lua

14 lines
258 B
Lua

minetest.register_chatcommand("skybox_list", {
description = "Lists all available skyboxes",
func = function()
local list = ""
for _, skyboxdef in ipairs(epic_skybox.list) do
list = list .. skyboxdef.name .. ","
end
return true, list
end
})