Merge branch 'addons-repair' into 'master'

Addons repair

Closes ring-racers#177 and ring-racers#172

See merge request kart-krew-dev/ring-racers-internal!2966
This commit is contained in:
Eidolon 2025-10-21 19:39:47 -05:00
commit 5b0351524f
3 changed files with 5 additions and 5 deletions

View file

@ -4484,7 +4484,7 @@ static void Command_Addfile(void)
}
// Add file on your client directly if it is trivial, or you aren't in a netgame.
if (!(netgame || multiplayer) || musiconly)
if (!netgame || musiconly)
{
P_AddWadFile(fn);
addedfiles[numfilesadded++] = fn;

View file

@ -28,7 +28,7 @@ menuitem_t OPTIONS_DataAdvancedAddon[] =
{IT_STRING | IT_CVAR, "Matching", "Set where to check for the text pattern when looking up addons via name.",
NULL, {.cvar = &cv_addons_search_type}, 0, 0},
{IT_STRING | IT_CVAR, "Case Sensitivity", "Set whether to consider the case when searching for addons..",
{IT_STRING | IT_CVAR, "Case Sensitivity", "Set whether to consider the case when searching for addons.",
NULL, {.cvar = &cv_addons_search_case}, 0, 0},
};

View file

@ -2535,12 +2535,12 @@ int W_VerifyNMUSlumps(const char *filename, FILE *handle, boolean exit_on_error)
&& stricmp(&filename[strlen(filename) - 4], ".lua"))
{
status = W_VerifyWAD(handle, NMUSlist, false);
// repair file handle in this specific case
fseek(handle, 0, SEEK_SET);
}
}
// repair file handle so we don't have to open a new one
fseek(handle, 0, SEEK_SET);
if (status == -1)
W_InitFileError(filename, exit_on_error);