Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Hook/Hooks_Package.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ namespace {
bool result = oCheckAppOwnership(pObj, appId, pOwn);
TryInitFakeLicenseOnce();

// LOG_PACKAGE_TRACE("CheckAppOwnership: AppId={} result={} {}", appId, result, pOwn->DebugString());
if (LuaConfig::HasDepot(appId,false)) {
if (result && pOwn->ExistInPackageNums > 1) {
// Actually owned — record so HasDepot excludes it going forward
Expand All @@ -106,6 +105,7 @@ namespace {
} else {
pOwn->PackageId = kInjectedPackageId;
pOwn->ReleaseState = EAppReleaseState::Released;
pOwn->bOwnsLicense = true; //This forces DLCs on steam family shared games that u dont own when adding their appid via .lua
// Setting this free flag to false will hide it from the library UI.
pOwn->bFreeLicense = false;
return true;
Expand Down
Loading