Skip to content

Commit

Permalink
fix: tolerate Northstar.Custom version differences (with server version)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alystrasz committed Aug 30, 2024
1 parent fa7b782 commit 60ee024
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1153,7 +1153,8 @@ void function ThreadedAuthAndConnectToServer( string password = "", bool modsCha
bool found = false
foreach ( RequiredModInfo mod in file.lastSelectedServer.requiredMods )
{
if (mod.name == modName && mod.version == modVersion)
// this tolerates a version difference for requiredOnClient core mods (only Northstar.Custom for now)
if (mod.name == modName && ( IsCoreMod( modName ) || mod.version == modVersion ))
{
found = true
print(format("Found \"%s\" v%s", modName, modVersion))
Expand Down

0 comments on commit 60ee024

Please sign in to comment.