Skip to content

Commit

Permalink
Only download ExportRecipes once due to not having language differences
Browse files Browse the repository at this point in the history
  • Loading branch information
Sainan committed Jun 2, 2024
1 parent ab0bfa3 commit d2eaa2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion download.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit d2eaa2b

Please sign in to comment.