diff --git a/src/assets/images/game_selection/DaleAndDawson.png b/src/assets/images/game_selection/DaleAndDawson.png new file mode 100644 index 000000000..ed02047aa Binary files /dev/null and b/src/assets/images/game_selection/DaleAndDawson.png differ diff --git a/src/model/game/GameManager.ts b/src/model/game/GameManager.ts index a0430ee10..2f6286447 100644 --- a/src/model/game/GameManager.ts +++ b/src/model/game/GameManager.ts @@ -859,6 +859,12 @@ export default class GameManager { "https://thunderstore.io/c/miside/api/v1/package-listing-index/", [new StorePlatformMetadata(StorePlatform.STEAM, "2527500")], "MiSide.webp", GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, [""]), + + new Game("Dale & Dawson Stationery Supplies", "DaleAndDawson", "DaleAndDawson", + "Dale&Dawson", ["DDSS.exe"], "DDSS_Data", + "https://thunderstore.io/c/dale-dawson-stationery-supplies/api/v1/package-listing-index/", + [new StorePlatformMetadata(StorePlatform.STEAM, "2920570")], "DaleAndDawson.png", + GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.RECURSIVE_MELON_LOADER, [""]), ]; static get activeGame(): Game { diff --git a/src/r2mm/installing/profile_installers/ModLoaderVariantRecord.ts b/src/r2mm/installing/profile_installers/ModLoaderVariantRecord.ts index e59c8bcc0..9d763f14a 100644 --- a/src/r2mm/installing/profile_installers/ModLoaderVariantRecord.ts +++ b/src/r2mm/installing/profile_installers/ModLoaderVariantRecord.ts @@ -215,6 +215,7 @@ const VARIANTS = { Subterror: MODLOADER_PACKAGES, IAmYourBeast: MODLOADER_PACKAGES, MiSide: MODLOADER_PACKAGES, + DaleAndDawson: RECURSIVE_MELONLOADER_MAPPING, }; // Exported separately from the definition in order to preserve the key names in the type definition. // Otherwise this would become [key: string] and we couldn't use the game names for type hinting elsewhere.