Experimental no longer pre-opens stone walls

Updated baserom
Fixed a standard bug where the exits to the ledge would be unavailable if the pyramid was pre-opened
DR ASM optimization
Removed Archery Game from Take-Any caves in inverted
Fixed a problem with new YAML parser
This commit is contained in:
aerinon
2021-05-13 12:17:31 -06:00
parent 7764432683
commit f2318b821a
12 changed files with 56 additions and 33 deletions

View File

@@ -8,6 +8,12 @@ import yaml
from DungeonRandomizer import parse_cli
from Main import main as DRMain
from source.classes.BabelFish import BabelFish
from yaml.constructor import SafeConstructor
def add_bool(self, node):
return self.construct_scalar(node)
SafeConstructor.add_constructor(u'tag:yaml.org,2002:bool', add_bool)
def main():
parser = argparse.ArgumentParser(add_help=False)