mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Remove off by one """"fix""""
This commit is contained in:
parent
5429fc5dc6
commit
150f514c80
1 changed files with 2 additions and 2 deletions
|
|
@ -810,7 +810,7 @@ static void K_ParseSplashParameter(size_t i, char *param, char *val)
|
|||
|
||||
if (stricmp(param, "mobjType") == 0)
|
||||
{
|
||||
splash->mobjType = get_number(val) + 1;
|
||||
splash->mobjType = get_number(val);
|
||||
}
|
||||
else if (stricmp(param, "sfx") == 0)
|
||||
{
|
||||
|
|
@ -910,7 +910,7 @@ static void K_ParseFootstepParameter(size_t i, char *param, char *val)
|
|||
|
||||
if (stricmp(param, "mobjType") == 0)
|
||||
{
|
||||
footstep->mobjType = get_number(val) + 1;
|
||||
footstep->mobjType = get_number(val);
|
||||
}
|
||||
else if (stricmp(param, "sfx") == 0)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue