- fixed order of slope creation so that slope copies are the last thing being done.

This commit is contained in:
Christoph Oelckers 2022-03-16 08:06:59 +01:00
parent 7ba5a74f2e
commit fe4c95a03e
1 changed files with 1 additions and 1 deletions

View File

@ -417,6 +417,7 @@ void MapLoader::SpawnSlopeMakers (FMapThing *firstmt, FMapThing *lastmt, const i
mt->EdNum = 0;
}
}
SetSlopesFromVertexHeights(firstmt, lastmt, oldvertextable);
for (mt = firstmt; mt < lastmt; ++mt)
{
@ -428,7 +429,6 @@ void MapLoader::SpawnSlopeMakers (FMapThing *firstmt, FMapThing *lastmt, const i
}
}
SetSlopesFromVertexHeights(firstmt, lastmt, oldvertextable);
}