We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69d65f8 commit c1faa71Copy full SHA for c1faa71
1 file changed
tests/test_dungeon.py
@@ -137,11 +137,14 @@ def test_dungeon_entrance(self):
137
short_descr="A dark entrance",
138
target_location=location,
139
)
140
- entrance.bind(location)
+ location.add_exits([entrance])
141
142
dungeon_config = DungeonConfig(
143
name="A dark entrance",
144
description="A dark entrance to a dungeon.",
145
+ races=["goblin", "skeleton"],
146
+ items=["potion", "gold"],
147
+ max_depth=5
148
149
150
dungeon = entrance.build_dungeon(self.story, self.llm_util, dungeon_config)
0 commit comments