Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
Add repacking for sct.par in VF eSports stages
Browse files Browse the repository at this point in the history
  • Loading branch information
SutandoTsukai181 committed Jul 7, 2021
1 parent 0ea0f54 commit 1f7bcc8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ModLoadOrder/Mods/Mod.cs
Expand Up @@ -85,6 +85,9 @@ public void AddFiles(string path, string check)
case "particle/arc":
needsRepack = GamePath.ExistsInDataAsParNested(path);
break;
case "stage":
needsRepack = GamePath.GetGame() == Game.eve && basename == "sct" && GamePath.ExistsInDataAsParNested(path);
break;
case "":
needsRepack = (basename == "ptc" && GamePath.ExistsInDataAsParNested(path))
|| (basename == "entity_adam" && GamePath.ExistsInDataAsPar(path));
Expand Down
1 change: 1 addition & 0 deletions Utils/Constants.cs
Expand Up @@ -19,6 +19,7 @@ public static class Constants
"prep",
"light_anim",
"particle",
"stage",
};
}
}

0 comments on commit 1f7bcc8

Please sign in to comment.