mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-29 12:40:40 +00:00
Remove irrelevant attempts at majormod setting for SOC events which explicitly can only happen if a gamedata is created.
This commit is contained in:
parent
66273898b7
commit
dda94e4498
1 changed files with 0 additions and 10 deletions
|
@ -3671,7 +3671,6 @@ static void DEH_LoadDehackedFile(MYFILE *f, UINT16 wad)
|
|||
if (numemblems < i)
|
||||
numemblems = i;
|
||||
reademblemdata(f, i);
|
||||
G_SetGameModified(multiplayer, true);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -3692,7 +3691,6 @@ static void DEH_LoadDehackedFile(MYFILE *f, UINT16 wad)
|
|||
if (numextraemblems < i)
|
||||
numextraemblems = i;
|
||||
readextraemblemdata(f, i);
|
||||
G_SetGameModified(multiplayer, true);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -3709,10 +3707,7 @@ static void DEH_LoadDehackedFile(MYFILE *f, UINT16 wad)
|
|||
ignorelines(f);
|
||||
}
|
||||
else if (i > 0 && i <= MAXUNLOCKABLES)
|
||||
{
|
||||
readunlockable(f, i - 1);
|
||||
G_SetGameModified(multiplayer, true);
|
||||
}
|
||||
else
|
||||
{
|
||||
deh_warning("Unlockable number %d out of range (1 - %d)", i, MAXUNLOCKABLES);
|
||||
|
@ -3728,10 +3723,7 @@ static void DEH_LoadDehackedFile(MYFILE *f, UINT16 wad)
|
|||
ignorelines(f);
|
||||
}
|
||||
else if (i > 0 && i <= MAXCONDITIONSETS)
|
||||
{
|
||||
readconditionset(f, (UINT8)i);
|
||||
G_SetGameModified(multiplayer, true);
|
||||
}
|
||||
else
|
||||
{
|
||||
deh_warning("Condition set number %d out of range (1 - %d)", i, MAXCONDITIONSETS);
|
||||
|
@ -3785,8 +3777,6 @@ static void DEH_LoadDehackedFile(MYFILE *f, UINT16 wad)
|
|||
|
||||
if (clearall || fastcmp(word2, "LEVELS"))
|
||||
clear_levels();
|
||||
|
||||
G_SetGameModified(multiplayer, true);
|
||||
}
|
||||
else
|
||||
deh_warning("Unknown word: %s", word);
|
||||
|
|
Loading…
Reference in a new issue