From d2eaa2ba432650f649d913bbaaf3cd768d02f326 Mon Sep 17 00:00:00 2001 From: Sainan Date: Sun, 2 Jun 2024 10:43:14 +0200 Subject: [PATCH] Only download ExportRecipes once due to not having language differences --- download.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/download.php b/download.php index 7530a7c..1f1cdb2 100644 --- a/download.php +++ b/download.php @@ -8,7 +8,7 @@ { $line = str_replace("\r", "", $line); $name = explode("!", $line)[0]; - if ($name != "ExportManifest.json" || $file == "index_en.txt") + if ($file == "index_en.txt" ? true : ($name != "ExportManifest.json" && $name != "ExportRecipes.json")) { echo "Downloading $name...\n"; $data = file_get_contents("https://content.warframe.com/PublicExport/Manifest/".$line);