diff --git a/src/main/java/xyz/jeddunk/autocreamapi/util/SteamAppsListCache.java b/src/main/java/xyz/jeddunk/autocreamapi/util/SteamAppsListCache.java index 76cf578..b1f7655 100644 --- a/src/main/java/xyz/jeddunk/autocreamapi/util/SteamAppsListCache.java +++ b/src/main/java/xyz/jeddunk/autocreamapi/util/SteamAppsListCache.java @@ -159,6 +159,8 @@ public class SteamAppsListCache { try { Document steamDoc = Jsoup .connect("https://store.steampowered.com/app/" + appId + "/") + .cookie("birthtime", "470703601") + .cookie("wants_mature_content", "1") .get(); Elements steamDLCs = steamDoc.getElementsByClass("game_area_dlc_row"); for (Element dlc : steamDLCs) {