1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 09:32:29 +01:00

Clean up many other coordinates

This commit is contained in:
Gymnasiast
2020-03-13 12:03:43 +01:00
parent 3412c47a9e
commit bdf681f440
32 changed files with 132 additions and 172 deletions

View File

@@ -109,9 +109,7 @@ protected:
peep->PerformNextAction(pathingResult);
++step;
pos->x = peep->x / 32;
pos->y = peep->y / 32;
pos->z = peep->z / 8;
pos = TileCoordsXYZ(CoordsXYZ(peep->x, peep->y, peep->z));
EXPECT_PRED_FORMAT1(AssertIsNotForbiddenPosition, *pos);