diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-20 16:26:30 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-20 16:26:30 -0300 |
commit | 176275df4108ee4def8ccd17f804d53556b843f8 (patch) | |
tree | 6904b7896333813d84f38e6c2ee32330b0e16322 /game | |
parent | 789e0b8773dd996b268394ee1306bb4f08ab6be9 (diff) | |
download | client-176275df4108ee4def8ccd17f804d53556b843f8.tar.gz client-176275df4108ee4def8ccd17f804d53556b843f8.tar.bz2 client-176275df4108ee4def8ccd17f804d53556b843f8.tar.xz client-176275df4108ee4def8ccd17f804d53556b843f8.zip |
Prepare for support for multiple worlds.
For now, only the world "Main" is supported.
Diffstat (limited to 'game')
-rw-r--r-- | game/quest.rpy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/quest.rpy b/game/quest.rpy index 9e96400..b738b83 100644 --- a/game/quest.rpy +++ b/game/quest.rpy @@ -46,7 +46,7 @@ label quest_select: python: worldmap=[] areamap=[] - for arx in allworld: + for arx in allworld["Main"]: arena=copy.copy(arx) name=arena.pop(0) req=arena.pop(0) |