Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Lethal Company data folder #1341

Merged
merged 1 commit into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/Adding a game.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
- **ExeName**
- An array of different executable names (for all platforms). For `StorePlatform` types such as `OTHER` and `STEAM_DIRECT` then the first found executable is used and called when the game is launched.
- **DataFolderName**
- Only relevant for Mono (C#) Unity games. Only used for the `Preloader Fix` in the manager settings.
- Required for Unreal games relying on unreal-shimloader.
- Relevant for Mono (C#) Unity games, which use it for the `Preloader Fix` in the manager settings.
- **TsUrl**
- The Thunderstore API endpoint for the listing.
- **ExclusionsUrl**
Expand Down
4 changes: 2 additions & 2 deletions src/model/game/GameManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ export default class GameManager {
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, ["cs2"]),

new Game("Lethal Company", "LethalCompany", "LethalCompany",
"Lethal Company", ["Lethal Company.exe"], "LethalCompany_Data",
"Lethal Company", ["Lethal Company.exe"], "Lethal Company_Data",
"https://thunderstore.io/c/lethal-company/api/v1/package/", EXCLUSIONS,
[new StorePlatformMetadata(StorePlatform.STEAM, "1966720")], "LethalCompany.png",
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, ["lc"]),
Expand Down Expand Up @@ -591,7 +591,7 @@ export default class GameManager {
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, []),

new Game("Content Warning", "ContentWarning", "ContentWarning",
"Content Warning", ["Content Warning.exe"], "ContentWarning_Data",
"Content Warning", ["Content Warning.exe"], "Content Warning_Data",
"https://thunderstore.io/c/content-warning/api/v1/package/", EXCLUSIONS,
[new StorePlatformMetadata(StorePlatform.STEAM, "2881650")], "ContentWarning.png",
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, ["cw"]),
Expand Down
Loading