Skip to content

Commit

Permalink
Fix being unable to load empty ressource pack
Browse files Browse the repository at this point in the history
  • Loading branch information
FireInstall committed Mar 21, 2024
1 parent 5658362 commit 65aca75
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public static Path getResourceDir() {

private boolean loadEmptyPack() {
try {
URL u = new URL("https://github.com/AddstarMC/Minigames/raw/master/Minigames/src/main/resources/resourcepack/emptyResourcePack.zip");
URL u = new URL("https://github.com/AddstarMC/Minigames/blob/master/Minigames/src/main/resources/resourcepack/emptyResourcePack.zip");
ResourcePack empty = new ResourcePack("empty", u);
addResourcePack(empty);
return true;
Expand Down

0 comments on commit 65aca75

Please sign in to comment.