1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-12 16:15:20 +02:00

Alphabetical sorting of texture packs in menu (fixes #3487)

This commit is contained in:
jeanpatrick.guerrero@gmail.com
2015-12-25 22:10:29 +01:00
committed by est31
parent e834e83ed8
commit 382ab969d4

View File

@@ -17,12 +17,16 @@
--------------------------------------------------------------------------------
local function filter_texture_pack_list(list)
local retval = {fgettext("None")}
local retval = {}
for _, item in ipairs(list) do
if item ~= "base" then
table.insert(retval, item)
end
end
table.sort(retval)
table.insert(retval, 1, fgettext("None"))
return retval
end