This commit is contained in:
Lucastaa
2026-05-08 09:50:34 +07:00
parent 1e81f24053
commit 29dfa4d843
5 changed files with 28 additions and 12 deletions

View File

@@ -108,8 +108,8 @@ namespace Hallucinate.GameSetup.Maze
int z = pos.y;
// Set stair cells
currentFloor.SetCell(x, z, MazeCellType.StairUp);
nextFloor.SetCell(x, z, MazeCellType.StairDown);
currentFloor.SetCell(x, z, MazeCellType.StairsUp);
nextFloor.SetCell(x, z, MazeCellType.StairsDown);
connectionsMade++;
}