Skip to content

Commit 8da6162

Browse files
committed
Fix data file path in halal.py
1 parent 6f77ac8 commit 8da6162

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/halal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
def load_data(bot):
1414
def load_file(file, data_dict):
1515
data_dict.clear()
16-
path = Path(bot.data_dir) / file
16+
path = Path(bot.data_dir) / "food" / file
1717
with path.open(encoding='utf-8') as f:
1818
data_dict.update(json.load(f))
1919

0 commit comments

Comments
 (0)