1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2026-03-02 03:39:21 +00:00

Try out new DLC ownership checkling

This commit is contained in:
tobspr
2021-06-23 07:59:03 +02:00
parent acc25a93f0
commit d7abdfef90
2 changed files with 2 additions and 2 deletions

View File

@@ -75,7 +75,7 @@ function listen() {
});
ipcMain.handle("steam:check-app-ownership", (event, appId) => {
return Promise.resolve(greenworks.isSubscribedApp(appId));
return Promise.resolve(greenworks.isDLCInstalled(appId));
});
}