diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-04-29 13:38:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-29 20:38:29 +0200 |
commit | 392fe65313a94ebfd7e0f70c8f7c3c7365bcff1c (patch) | |
tree | 9a8f362beb74b79aaba0bf682d61fef701103018 /options.py | |
parent | b45b9bd74612239ebc29322fc340b1bee62e7032 (diff) | |
download | lingo-apworld-392fe65313a94ebfd7e0f70c8f7c3c7365bcff1c.tar.gz lingo-apworld-392fe65313a94ebfd7e0f70c8f7c3c7365bcff1c.tar.bz2 lingo-apworld-392fe65313a94ebfd7e0f70c8f7c3c7365bcff1c.zip |
Lingo: Fix world load on frozen 3.8 (#3220)
* Lingo: Fix world load on frozen 3.8 * Fixed absolute imports in unit test * Made unpickling safer
Diffstat (limited to 'options.py')
-rw-r--r-- | options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/options.py b/options.py index 05fb4ed..65f2726 100644 --- a/options.py +++ b/options.py | |||
@@ -3,7 +3,7 @@ from dataclasses import dataclass | |||
3 | from schema import And, Schema | 3 | from schema import And, Schema |
4 | 4 | ||
5 | from Options import Toggle, Choice, DefaultOnToggle, Range, PerGameCommonOptions, StartInventoryPool, OptionDict | 5 | from Options import Toggle, Choice, DefaultOnToggle, Range, PerGameCommonOptions, StartInventoryPool, OptionDict |
6 | from worlds.lingo.items import TRAP_ITEMS | 6 | from .items import TRAP_ITEMS |
7 | 7 | ||
8 | 8 | ||
9 | class ShuffleDoors(Choice): | 9 | class ShuffleDoors(Choice): |