You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-20 07:26:18 +00:00
🆙 Small Fixes
This commit is contained in:
@@ -623,7 +623,17 @@ export class RoomPlaneParser
|
||||
}
|
||||
_local_3++;
|
||||
}
|
||||
const _local_4: Point = RoomPlaneParser.findEntranceTile(this._tileMatrix);
|
||||
const _local_4: Point = (() =>
|
||||
{
|
||||
const matrixWithFloorHoles = this._tileMatrix.map((row, rowIndex) =>
|
||||
{
|
||||
const floorHoleRow = this._floorHoleMatrix[rowIndex] || [];
|
||||
|
||||
return row.map((value, columnIndex) => (floorHoleRow[columnIndex] ? RoomPlaneParser.TILE_HOLE : value));
|
||||
});
|
||||
|
||||
return RoomPlaneParser.findEntranceTile(matrixWithFloorHoles);
|
||||
})();
|
||||
|
||||
_local_3 = 0;
|
||||
while(_local_3 < this._height)
|
||||
|
||||
Reference in New Issue
Block a user