Skip to content

Commit 5da0db0

Browse files
authored
Merge pull request #1518 from thunderstore-io/add-game-sulfur
Add game: SULFUR
2 parents e433e33 + 798aed7 commit 5da0db0

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed
20.3 KB
Loading

src/model/game/GameManager.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -812,6 +812,12 @@ export default class GameManager {
812812
"https://thunderstore.io/c/subterranauts/api/v1/package-listing-index/", EXCLUSIONS,
813813
[new StorePlatformMetadata(StorePlatform.STEAM, "3075800")], "Subterranauts.png",
814814
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, [""]),
815+
816+
new Game("SULFUR", "SULFUR", "SULFUR",
817+
"Sulfur", ["Sulfur.exe"], "Sulfur_Data",
818+
"https://thunderstore.io/c/sulfur/api/v1/package-listing-index/", EXCLUSIONS,
819+
[new StorePlatformMetadata(StorePlatform.STEAM, "2124120")], "SULFUR.png",
820+
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, [""]),
815821
];
816822

817823
static get activeGame(): Game {

src/r2mm/installing/default_installation_rules/InstallationRuleApplicator.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ export default class InstallationRuleApplicator {
152152
buildBepInExRules("TCGCardShopSimulator"),
153153
buildBepInExRules("OldMarketSimulator"),
154154
buildBepInExRules("Subterranauts"),
155+
buildBepInExRules("SULFUR"),
155156
]
156157
}
157158
}

src/r2mm/installing/profile_installers/ModLoaderVariantRecord.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ const VARIANTS = {
203203
TCGCardShopSimulator: MODLOADER_PACKAGES,
204204
OldMarketSimulator: MODLOADER_PACKAGES,
205205
Subterranauts: MODLOADER_PACKAGES,
206+
SULFUR: MODLOADER_PACKAGES,
206207
};
207208
// Exported separately from the definition in order to preserve the key names in the type definition.
208209
// Otherwise this would become [key: string] and we couldn't use the game names for type hinting elsewhere.

0 commit comments

Comments
 (0)