Skip to content

Commit

Permalink
Fix #31
Browse files Browse the repository at this point in the history
  • Loading branch information
LunNova committed Jan 20, 2017
1 parent b12f0df commit 471b169
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/nallar/tickprofiler/minecraft/CoreMod.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@
@IFMLLoadingPlugin.SortingIndex(1001)
public class CoreMod implements IFMLLoadingPlugin {
static {
ModPatcher.requireVersion("1.10.2.22");
ModPatcher.requireVersion("1.10.2.31");
}

private Boolean spongePresent;

@Override
public String[] getASMTransformerClass() {
return new String[0];
Expand All @@ -29,8 +31,6 @@ public String getSetupClass() {
return ModPatcher.getSetupClass();
}

private Boolean spongePresent;

private boolean isSpongePresent() {
if (spongePresent == null) {
try {
Expand Down

0 comments on commit 471b169

Please sign in to comment.