比較提交

...

1 次程式碼提交

作者 SHA1 備註 日期
cbb85e3baa fix items not being placed on bosses
bosses were considered unreachable when LimitArea was in effect because
they don't have a sector identifier (e.g. "S2") in their names.

this also affected non-boss things like the "Pump Control". now the
randomizer can actually require you to lower the water!
2024-02-07 23:26:43 -08:00

查看文件

@ -230,7 +230,7 @@ class Game:
continue continue
if point in path: if point in path:
continue continue
if LimitArea: if LimitArea and point != end:
for area in range(0, 7): for area in range(0, 7):
if 'S{}'.format(area) in start: if 'S{}'.format(area) in start:
if 'S{}'.format(area) not in point: if 'S{}'.format(area) not in point: