Skip to content

Commit

Permalink
fix: enable auto-download if remote mod exists locally but with a dif…
Browse files Browse the repository at this point in the history
…ferent version
  • Loading branch information
Alystrasz committed Jul 27, 2024
1 parent a757a5c commit 34bd5e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -994,7 +994,7 @@ void function OnServerSelected_Threaded( var button )

foreach ( RequiredModInfo mod in server.requiredMods )
{
if ( !NSGetModNames().contains( mod.name ) )
if ( !NSGetModNames().contains( mod.name ) || NSGetModVersionByModName( mod.name ) != mod.version )
{
// Auto-download mod
if ( autoDownloadAllowed )
Expand Down

0 comments on commit 34bd5e0

Please sign in to comment.