mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Revert "Add flag to line slopes for copying their slopes to the other side."
This reverts commit 7f969705b4.
This commit is contained in:
parent
af1177a92e
commit
a6690e02fa
3 changed files with 8 additions and 33 deletions
|
|
@ -2519,11 +2519,9 @@ linedeftypes
|
|||
title = "Slope Frontside Floor";
|
||||
prefix = "(700)";
|
||||
flags2048text = "[11] No physics";
|
||||
flags4096text = "[12] Dynamic";
|
||||
flags32768text = "[15] Copy to other side";
|
||||
flags4096text = "[12] Not dynamic";
|
||||
slope = "regular";
|
||||
slopeargs = 1;
|
||||
copyslopeargs = 1;
|
||||
}
|
||||
|
||||
701
|
||||
|
|
@ -2531,11 +2529,9 @@ linedeftypes
|
|||
title = "Slope Frontside Ceiling";
|
||||
prefix = "(701)";
|
||||
flags2048text = "[11] No physics";
|
||||
flags4096text = "[12] Dynamic";
|
||||
flags32768text = "[15] Copy to other side";
|
||||
flags4096text = "[12] Not dynamic";
|
||||
slope = "regular";
|
||||
slopeargs = 2;
|
||||
copyslopeargs = 4;
|
||||
}
|
||||
|
||||
702
|
||||
|
|
@ -2543,11 +2539,9 @@ linedeftypes
|
|||
title = "Slope Frontside Floor and Ceiling";
|
||||
prefix = "(702)";
|
||||
flags2048text = "[11] No physics";
|
||||
flags4096text = "[12] Dynamic";
|
||||
flags32768text = "[15] Copy to other side";
|
||||
flags4096text = "[12] Not dynamic";
|
||||
slope = "regular";
|
||||
slopeargs = 3;
|
||||
copyslopeargs = 5;
|
||||
}
|
||||
|
||||
703
|
||||
|
|
@ -2555,11 +2549,9 @@ linedeftypes
|
|||
title = "Slope Frontside Floor and Backside Ceiling";
|
||||
prefix = "(703)";
|
||||
flags2048text = "[11] No physics";
|
||||
flags4096text = "[12] Dynamic";
|
||||
flags32768text = "[15] Copy to other side";
|
||||
flags4096text = "[12] Not dynamic";
|
||||
slope = "regular";
|
||||
slopeargs = 9;
|
||||
copyslopeargs = 8;
|
||||
}
|
||||
|
||||
704
|
||||
|
|
@ -2589,11 +2581,9 @@ linedeftypes
|
|||
title = "Slope Backside Floor";
|
||||
prefix = "(710)";
|
||||
flags2048text = "[11] No physics";
|
||||
flags4096text = "[12] Dynamic";
|
||||
flags32768text = "[15] Copy to other side";
|
||||
flags4096text = "[12] Not dynamic";
|
||||
slope = "regular";
|
||||
slopeargs = 4;
|
||||
copyslopeargs = 2;
|
||||
}
|
||||
|
||||
711
|
||||
|
|
@ -2601,11 +2591,9 @@ linedeftypes
|
|||
title = "Slope Backside Ceiling";
|
||||
prefix = "(711)";
|
||||
flags2048text = "[11] No physics";
|
||||
flags4096text = "[12] Dynamic";
|
||||
flags32768text = "[15] Copy to other side";
|
||||
flags4096text = "[12] Not dynamic";
|
||||
slope = "regular";
|
||||
slopeargs = 8;
|
||||
copyslopeargs = 8;
|
||||
}
|
||||
|
||||
712
|
||||
|
|
@ -2613,11 +2601,9 @@ linedeftypes
|
|||
title = "Slope Backside Floor and Ceiling";
|
||||
prefix = "(712)";
|
||||
flags2048text = "[11] No physics";
|
||||
flags4096text = "[12] Dynamic";
|
||||
flags32768text = "[15] Copy to other side";
|
||||
flags4096text = "[12] Not dynamic";
|
||||
slope = "regular";
|
||||
slopeargs = 12;
|
||||
copyslopeargs = 10;
|
||||
}
|
||||
|
||||
713
|
||||
|
|
@ -2625,11 +2611,9 @@ linedeftypes
|
|||
title = "Slope Backside Floor and Frontside Ceiling";
|
||||
prefix = "(713)";
|
||||
flags2048text = "[11] No physics";
|
||||
flags4096text = "[12] Dynamic";
|
||||
flags32768text = "[15] Copy to other side";
|
||||
flags4096text = "[12] Not dynamic";
|
||||
slope = "regular";
|
||||
slopeargs = 6;
|
||||
copyslopeargs = 6;
|
||||
}
|
||||
|
||||
714
|
||||
|
|
|
|||
|
|
@ -3327,12 +3327,6 @@ static void P_ConvertBinaryMap(void)
|
|||
if (lines[i].flags & ML_NONET)
|
||||
lines[i].args[2] |= TMSL_DYNAMIC;
|
||||
|
||||
if (lines[i].flags & ML_TFERLINE)
|
||||
{
|
||||
lines[i].args[4] |= backfloor ? TMSC_BACKTOFRONTFLOOR : (frontfloor ? TMSC_FRONTTOBACKFLOOR : 0);
|
||||
lines[i].args[4] |= backceil ? TMSC_BACKTOFRONTCEILING : (frontceil ? TMSC_FRONTTOBACKCEILING : 0);
|
||||
}
|
||||
|
||||
lines[i].special = 700;
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -758,9 +758,6 @@ void P_SpawnSlopes(const boolean fromsave) {
|
|||
for (i = 0; i < numlines; i++)
|
||||
switch (lines[i].special)
|
||||
{
|
||||
case 700:
|
||||
if (lines[i].flags & ML_TFERLINE) P_CopySectorSlope(&lines[i]);
|
||||
break;
|
||||
case 720:
|
||||
P_CopySectorSlope(&lines[i]);
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue