Fix texture packs showing as "Nil (enabled)" in Content tab

Fixes #12285
pull/56/head
rubenwardy 2022-05-07 23:05:24 +01:00
parent 87472150bc
commit e0e897832c
1 changed files with 2 additions and 2 deletions

View File

@ -82,9 +82,9 @@ local function load_texture_packs(txtpath, retval)
local conf = Settings(path .. "texture_pack.conf")
local enabled = path == current_texture_path
local title = conf:get("title")
-- list_* is only used if non-nil, else the regular versions are used.
local title = conf:get("title") or item
-- list_* is only used if non-nil, else the regular versions are used.
retval[#retval + 1] = {
name = item,
title = title,