mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +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
4a87838f06
commit
88dc2569e4
1 changed files with 0 additions and 10 deletions
|
|
@ -3671,7 +3671,6 @@ static void DEH_LoadDehackedFile(MYFILE *f, UINT16 wad)
|
||||||
if (numemblems < i)
|
if (numemblems < i)
|
||||||
numemblems = i;
|
numemblems = i;
|
||||||
reademblemdata(f, i);
|
reademblemdata(f, i);
|
||||||
G_SetGameModified(multiplayer, true);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
@ -3692,7 +3691,6 @@ static void DEH_LoadDehackedFile(MYFILE *f, UINT16 wad)
|
||||||
if (numextraemblems < i)
|
if (numextraemblems < i)
|
||||||
numextraemblems = i;
|
numextraemblems = i;
|
||||||
readextraemblemdata(f, i);
|
readextraemblemdata(f, i);
|
||||||
G_SetGameModified(multiplayer, true);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
@ -3709,10 +3707,7 @@ static void DEH_LoadDehackedFile(MYFILE *f, UINT16 wad)
|
||||||
ignorelines(f);
|
ignorelines(f);
|
||||||
}
|
}
|
||||||
else if (i > 0 && i <= MAXUNLOCKABLES)
|
else if (i > 0 && i <= MAXUNLOCKABLES)
|
||||||
{
|
|
||||||
readunlockable(f, i - 1);
|
readunlockable(f, i - 1);
|
||||||
G_SetGameModified(multiplayer, true);
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
deh_warning("Unlockable number %d out of range (1 - %d)", i, MAXUNLOCKABLES);
|
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);
|
ignorelines(f);
|
||||||
}
|
}
|
||||||
else if (i > 0 && i <= MAXCONDITIONSETS)
|
else if (i > 0 && i <= MAXCONDITIONSETS)
|
||||||
{
|
|
||||||
readconditionset(f, (UINT8)i);
|
readconditionset(f, (UINT8)i);
|
||||||
G_SetGameModified(multiplayer, true);
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
deh_warning("Condition set number %d out of range (1 - %d)", i, MAXCONDITIONSETS);
|
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"))
|
if (clearall || fastcmp(word2, "LEVELS"))
|
||||||
clear_levels();
|
clear_levels();
|
||||||
|
|
||||||
G_SetGameModified(multiplayer, true);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
deh_warning("Unknown word: %s", word);
|
deh_warning("Unknown word: %s", word);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue