Skip to content

Commit

Permalink
Fix incorrect resource and datapack path
Browse files Browse the repository at this point in the history
Maybe actually go into the pack folder instead of one level too high lol
  • Loading branch information
kindlich committed Aug 15, 2020
1 parent 2a6ab1b commit ebe9511
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import java.io.*;

public enum KnownResourceLoaderMod {
THE_LOADER("theloader", "the_loader/resourcepacks", "the_loader/datapacks"),
OPEN_LOADER("openloader", "openloader/resources", "openloader/data");
THE_LOADER("theloader", "the_loader/resourcepacks/contenttweaker", "the_loader/datapacks/contenttweaker"),
OPEN_LOADER("openloader", "openloader/resources/contenttweaker", "openloader/data/contenttweaker");

final String modid;
final File resourcePackDirectory;
Expand Down

0 comments on commit ebe9511

Please sign in to comment.