1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00
This commit is contained in:
IntelOrca
2015-06-07 14:01:32 +01:00
parent 2eea6bcd4b
commit b79bc68af9

View File

@@ -61,10 +61,10 @@ static void automatically_set_peep_spawn(int x, int y, int z)
}
}
peepSpawn->x = (word_981D6C[direction].x * 15) + 16;
peepSpawn->y = (word_981D6C[direction].y * 15) + 16;
peepSpawn->x = x + (word_981D6C[direction].x * 15) + 16;
peepSpawn->y = y + (word_981D6C[direction].y * 15) + 16;
peepSpawn->direction = direction;
peepSpawn->z = z / 2;
peepSpawn->z = z;
}
rct_map_element *map_get_footpath_element(int x, int y, int z)