File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 10
10
from .options import stardew_valley_options , StardewOptions , fetch_options
11
11
from .regions import create_regions
12
12
from .rules import set_rules
13
- from . .generic .Rules import set_rule
13
+ from worlds .generic .Rules import set_rule
14
14
15
15
client_version = 0
16
16
Original file line number Diff line number Diff line change 1
1
from dataclasses import dataclass
2
2
from typing import List
3
3
4
+ from .. import data
5
+
4
6
5
7
@dataclass (frozen = True )
6
8
class SeedItem :
@@ -23,7 +25,7 @@ def load_crop_csv():
23
25
except ImportError :
24
26
from importlib_resources import files # noqa
25
27
26
- with files (__package__ ).joinpath ("crops.csv" ).open () as file :
28
+ with files (data ).joinpath ("crops.csv" ).open () as file :
27
29
reader = csv .DictReader (file )
28
30
crops = []
29
31
seeds = []
You can’t perform that action at this time.
0 commit comments