We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent badecfa commit 7d7ccf5Copy full SHA for 7d7ccf5
builtin/mainmenu/dlg_contentstore.lua
@@ -305,18 +305,24 @@ function store.update_paths()
305
local mod_hash = {}
306
pkgmgr.refresh_globals()
307
for _, mod in pairs(pkgmgr.global_mods:get_list()) do
308
- mod_hash[mod.name] = mod
+ if mod.author then
309
+ mod_hash[mod.name] = mod
310
+ end
311
end
312
313
local game_hash = {}
314
pkgmgr.update_gamelist()
315
for _, game in pairs(pkgmgr.games) do
- game_hash[game.id] = game
316
+ if game.author then
317
+ game_hash[game.id] = game
318
319
320
321
local txp_hash = {}
322
for _, txp in pairs(pkgmgr.get_texture_packs()) do
- txp_hash[txp.name] = txp
323
+ if txp.author then
324
+ txp_hash[txp.name] = txp
325
326
327
328
for _, package in pairs(store.packages_full) do
0 commit comments