Spirals Can "connect" to the same direction now. Screws with maps.

Some initial work on key doors. Namely altering the reverse side of Big Key doors that were unreachable in vanilla.
This commit is contained in:
aerinon
2019-09-19 14:58:50 -06:00
parent e66908816d
commit 1aa2d904d3
7 changed files with 278 additions and 4 deletions

View File

@@ -883,6 +883,7 @@ class Door(object):
bitmask = int(self.layer) << 2
bitmask += 0x10 * int(self.zeroHzCam)
bitmask += 0x20 * int(self.zeroVtCam)
bitmask += 0x80 if self.direction == Direction.Up else 0
return [self.roomIndex, bitmask + self.quadrant, self.shiftX, self.shiftY]