Skip to content

Commit

Permalink
Ope! Forgot top-level data folder
Browse files Browse the repository at this point in the history
  • Loading branch information
OpenBagTwo committed Jun 11, 2024
1 parent 83da989 commit aeb9559
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion foxnap_rpg/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def parse_args(
type=int,
help=(
"The minumum track number to auto-assign. Default is 1, which will overwrite"
f" the tracks included with the mod. Set to {BUILT_IN_DISC_COUNT}"
f" the tracks included with the mod. Set to {BUILT_IN_DISC_COUNT + 1}"
" if you want to keep the music bundled with the mod or to a different"
" number to avoid conflicting with another FoxNap resource pack (in which"
" case you'll also want to use -g."
Expand Down
2 changes: 1 addition & 1 deletion foxnap_rpg/data_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def generate_datapack(
The title for the datapack. Default is "Custom Fox Nap Records"
"""
with TemporaryDirectory() as tmpdir:
song_directory = Path(tmpdir) / "foxnap" / "jukebox_song"
song_directory = Path(tmpdir) / "data" / "foxnap" / "jukebox_song"
song_directory.mkdir(parents=True)
for song_spec in jukebox_songs:
LOGGER.debug("Generating %s", f"{song_spec[0]}.json")
Expand Down

0 comments on commit aeb9559

Please sign in to comment.