Skip to content

Commit

Permalink
Merge pull request #6 from GTNewHorizons/glowredman-patch-1
Browse files Browse the repository at this point in the history
Fix usage of wrong variable
  • Loading branch information
Dream-Master authored Aug 29, 2023
2 parents 983b314 + 5ec4635 commit e08ae75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/glowredman/txloader/JarHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ static void indexJars() {
Pair.of(Paths.get(userHome, ".gradle", "caches", "retro_futura_gradle", "mc-vanilla"), "client.jar"));

List<Pair<Path, String>> serverLocations = new ArrayList<>();
clientLocations.add(Pair.of(txloaderCache, "server.jar"));
serverLocations.add(Pair.of(txloaderCache, "server.jar"));
serverLocations.add(
Pair.of(
Paths.get(userHome, ".gradle", "caches", "forge_gradle", "minecraft_repo", "versions"),
Expand Down

0 comments on commit e08ae75

Please sign in to comment.