Skip to content

Commit

Permalink
Builtin: Fix grayed-out but enabled modpacks
Browse files Browse the repository at this point in the history
  • Loading branch information
SmallJoker committed Feb 9, 2019
1 parent 6d6a813 commit a809f73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/mainmenu/pkgmgr.lua
Expand Up @@ -305,7 +305,7 @@ function pkgmgr.render_packagelist(render_list)

for j = 1, #rawlist, 1 do
if rawlist[j].modpack == list[i].name and
rawlist[j].enabled ~= true then
not rawlist[j].enabled then
-- Modpack not entirely enabled so showing as grey
color = mt_color_grey
break
Expand Down

0 comments on commit a809f73

Please sign in to comment.