Skip to content

Commit 828944c

Browse files
authored
Merge pull request #1606 from ebkr/add-game-miside
Add game MiSide
2 parents afa6461 + 88d70d4 commit 828944c

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

Diff for: src/assets/images/game_selection/MiSide.webp

18 KB
Binary file not shown.

Diff for: src/model/game/GameManager.ts

+6
Original file line numberDiff line numberDiff line change
@@ -853,6 +853,12 @@ export default class GameManager {
853853
"https://thunderstore.io/c/i-am-your-beast/api/v1/package-listing-index/",
854854
[new StorePlatformMetadata(StorePlatform.STEAM, "1876590")], "IAmYourBeast.webp",
855855
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, ["iayb"]),
856+
857+
new Game("MiSide", "MiSide", "MiSide",
858+
"MiSide", ["MiSide.exe"], "MiSideFull_Data",
859+
"https://thunderstore.io/c/miside/api/v1/package-listing-index/",
860+
[new StorePlatformMetadata(StorePlatform.STEAM, "2527500")], "MiSide.webp",
861+
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, [""]),
856862
];
857863

858864
static get activeGame(): Game {

Diff for: src/r2mm/installing/default_installation_rules/InstallationRuleApplicator.ts

+1
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ export default class InstallationRuleApplicator {
158158
buildBepInExRules("PeaksOfYore"),
159159
buildBepInExRules("Subterror"),
160160
buildBepInExRules("IAmYourBeast"),
161+
buildBepInExRules("MiSide"),
161162
]
162163
}
163164
}

Diff for: src/r2mm/installing/profile_installers/ModLoaderVariantRecord.ts

+1
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@ const VARIANTS = {
212212
PeaksOfYore: MODLOADER_PACKAGES,
213213
Subterror: MODLOADER_PACKAGES,
214214
IAmYourBeast: MODLOADER_PACKAGES,
215+
MiSide: MODLOADER_PACKAGES,
215216
};
216217
// Exported separately from the definition in order to preserve the key names in the type definition.
217218
// Otherwise this would become [key: string] and we couldn't use the game names for type hinting elsewhere.

0 commit comments

Comments
 (0)