Skip to content

Commit a809f73

Browse files
committedFeb 9, 2019
Builtin: Fix grayed-out but enabled modpacks
1 parent 6d6a813 commit a809f73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎builtin/mainmenu/pkgmgr.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ function pkgmgr.render_packagelist(render_list)
305305

306306
for j = 1, #rawlist, 1 do
307307
if rawlist[j].modpack == list[i].name and
308-
rawlist[j].enabled ~= true then
308+
not rawlist[j].enabled then
309309
-- Modpack not entirely enabled so showing as grey
310310
color = mt_color_grey
311311
break

0 commit comments

Comments
 (0)