Skip to content

Commit

Permalink
Remove redundant parameter in DownloadMod (#827)
Browse files Browse the repository at this point in the history
This parameter is a leftover of a previous refactor, and isn't used anywhere in the function.
  • Loading branch information
wolf109909 authored Jul 31, 2024
1 parent 459e83b commit ad2e09b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ void function FetchVerifiedModsManifesto()
CloseActiveMenu()
}

bool function DownloadMod( RequiredModInfo mod, string serverName )
bool function DownloadMod( RequiredModInfo mod )
{
// Downloading mod UI
DialogData dialogData
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,7 @@ void function OnServerSelected_Threaded( var button )
}
else
{
if ( DownloadMod( mod, server.name ) )
if ( DownloadMod( mod ) )
{
downloadedMods++
}
Expand Down

0 comments on commit ad2e09b

Please sign in to comment.