Skip to content

Commit f02adec

Browse files
committed
fix(dlc): Invert ownership check in shouldUnlockDlc, since it was the wrong way around
1 parent 10ddbb6 commit f02adec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/feats/dlc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ bool DLC::shouldUnlockDlc(uint32_t appId)
1818
return false;
1919
}
2020

21-
if (!g_pUser->checkAppOwnership(appId))
21+
if (g_pUser->checkAppOwnership(appId))
2222
{
2323
return false;
2424
}

0 commit comments

Comments
 (0)