Skip to content

Commit

Permalink
increased priority (decreased?)
Browse files Browse the repository at this point in the history
  • Loading branch information
MagicJinn committed May 30, 2024
1 parent b9bccbb commit 38b7965
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions game-sunlesssea/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ function main(context) {
},
});
// Create a seperate mod type for installing JSON mods to %localappdata%low
context.registerModType("JSON Addon Mod", 2, (gameId) => gameId === GAME_ID, JSON_MOD_PATH, () => Promise.resolve(false));
context.registerModType("JSON Addon Mod", 26, (gameId) => gameId === GAME_ID, JSON_MOD_PATH, () => Promise.resolve(false));

context.registerInstaller("Code Injection Mods", 1, isBepInExMod, installContent)
context.registerInstaller("JSON Addon Mods", 2, isJSONAddon, installContent)
context.registerInstaller("Code Injection Mods", 25, isBepInExMod, installContent)
context.registerInstaller("JSON Addon Mods", 26, isJSONAddon, installContent)

return true
}
Expand Down

0 comments on commit 38b7965

Please sign in to comment.