Skip to content

Commit

Permalink
Merge pull request #2180 from ajrb/fixLeverN52
Browse files Browse the repository at this point in the history
Fix a misaligned lever in N0000052.RDB
  • Loading branch information
ajrb committed Jul 17, 2021
2 parents 503fb4a + 9396536 commit 5ec48d6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Assets/Scripts/API/BlocksFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -508,11 +508,15 @@ private void FixRdbData(int block)
}
else if (block == 945 || block == 946) // N0000022.RDB or N0000023.RDB
{
blocks[block].DFBlock.RdbBlock.ObjectRootList[2].RdbObjects = null;
blocks[block].DFBlock.RdbBlock.ObjectRootList[2].RdbObjects = null; // Remove bad door
}
else if (block == 958) // N0000035.RDB
{
blocks[block].DFBlock.RdbBlock.ObjectRootList[0].RdbObjects[36].YPos = -300;
blocks[block].DFBlock.RdbBlock.ObjectRootList[0].RdbObjects[36].YPos = -300; // Correct door height
}
else if (block == 975) // N0000052.RDB
{
blocks[block].DFBlock.RdbBlock.ObjectRootList[0].RdbObjects[24].XPos = 543; // Correct lever placement
}
else if (block == 1025) // W0000009.RDB
{
Expand Down

0 comments on commit 5ec48d6

Please sign in to comment.