Skip to content

Commit

Permalink
Make ModPatcherTweaker public (accidentally made package private duri…
Browse files Browse the repository at this point in the history
…ng refactoring)
  • Loading branch information
LunNova committed May 12, 2017
1 parent 5be8fc5 commit b07c98c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ modpatcher {
generateStubMinecraftClasses = true
}

libLoader {
bundleLibLoader = false
}

sourceCompatibility = 1.8
targetCompatibility = 1.8

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* Tries to ensure that our transformer is last
*/
class ModPatcherTweaker implements ITweaker {
public class ModPatcherTweaker implements ITweaker {
@SuppressWarnings("unchecked")
public static void add() {
((List<String>) Launch.blackboard.get("TweakClasses")).add(ModPatcherTweaker.class.getName());
Expand Down

0 comments on commit b07c98c

Please sign in to comment.