mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-28 04:51:42 +00:00
Fix embarrassing copy-paste error
This commit is contained in:
parent
1ab2b4a897
commit
d30c24d2eb
1 changed files with 2 additions and 2 deletions
|
|
@ -5786,7 +5786,7 @@ static void P_ConvertBinaryLinedefTypes(void)
|
||||||
lines[i].args[0] |= TMCRF_FRONTONLY;
|
lines[i].args[0] |= TMCRF_FRONTONLY;
|
||||||
break;
|
break;
|
||||||
case 2004: //Bot controller
|
case 2004: //Bot controller
|
||||||
botController->args[0] = sides[botController->sidenum[0]].rowoffset / FRACUNIT;
|
lines[i].args[0] = sides[lines[i].sidenum[0]].rowoffset / FRACUNIT;
|
||||||
|
|
||||||
if (lines[i].flags & ML_NOCLIMB)
|
if (lines[i].flags & ML_NOCLIMB)
|
||||||
lines[i].args[1] |= TMBOT_NORUBBERBAND;
|
lines[i].args[1] |= TMBOT_NORUBBERBAND;
|
||||||
|
|
@ -5795,7 +5795,7 @@ static void P_ConvertBinaryLinedefTypes(void)
|
||||||
if (lines[i].flags & ML_SKEWTD)
|
if (lines[i].flags & ML_SKEWTD)
|
||||||
lines[i].args[1] |= TMBOT_FORCEDIR;
|
lines[i].args[1] |= TMBOT_FORCEDIR;
|
||||||
|
|
||||||
botController->args[2] = sides[botController->sidenum[0]].textureoffset / FRACUNIT;
|
lines[i].args[2] = sides[lines[i].sidenum[0]].textureoffset / FRACUNIT;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue