mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Clarify ambiguity regarding mapthing-based vertex slopes.
This commit is contained in:
parent
fac733331d
commit
aa2184989c
1 changed files with 3 additions and 3 deletions
|
|
@ -458,8 +458,8 @@ static pslope_t *MakeViaMapthings(INT16 tag1, INT16 tag2, INT16 tag3, UINT8 flag
|
|||
return ret;
|
||||
}
|
||||
|
||||
/// Create vertex based slopes.
|
||||
static void line_SpawnViaVertexes(const int linenum, const boolean spawnthinker)
|
||||
/// Create vertex based slopes using tagged mapthings.
|
||||
static void line_SpawnViaMapthingVertexes(const int linenum, const boolean spawnthinker)
|
||||
{
|
||||
line_t *line = lines + linenum;
|
||||
side_t *side;
|
||||
|
|
@ -630,7 +630,7 @@ void P_SpawnSlopes(const boolean fromsave) {
|
|||
case 705:
|
||||
case 714:
|
||||
case 715:
|
||||
line_SpawnViaVertexes(i, !fromsave); // Mapthing-based vertex slopes.
|
||||
line_SpawnViaMapthingVertexes(i, !fromsave);
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue