diff --git a/foxnap_rpg/cli.py b/foxnap_rpg/cli.py index 66e4bb9..70d9fed 100644 --- a/foxnap_rpg/cli.py +++ b/foxnap_rpg/cli.py @@ -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." diff --git a/foxnap_rpg/data_generator.py b/foxnap_rpg/data_generator.py index db6e92a..4752c20 100644 --- a/foxnap_rpg/data_generator.py +++ b/foxnap_rpg/data_generator.py @@ -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")