project: Bump version

This commit is contained in:
Owain van Brakel
2021-10-28 11:02:12 +02:00
parent 99bd6c08cd
commit 54eea68dab
2 changed files with 135 additions and 131 deletions

View File

@@ -27,7 +27,7 @@ object ProjectVersions {
const val launcherVersion = "2.2.0" const val launcherVersion = "2.2.0"
const val rlVersion = "1.7.27" const val rlVersion = "1.7.27"
const val openosrsVersion = "4.12.2" const val openosrsVersion = "4.12.3"
const val rsversion = 200 const val rsversion = 200
const val cacheversion = 165 const val cacheversion = 165

View File

@@ -87,6 +87,17 @@ public class CopyRuneLiteClasses extends AbstractInjector
} }
for (Method method : runeLiteObjectDeob.getMethods()) for (Method method : runeLiteObjectDeob.getMethods())
{
transformMethod(method);
runeliteObjectVanilla.addMethod(method);
}
inject.vanilla.addClass(runeliteObjectVanilla);
}
}
}
private void transformMethod(Method method)
{ {
method.setDescriptor(getObfuscatedSignature(method.getDescriptor())); method.setDescriptor(getObfuscatedSignature(method.getDescriptor()));
@@ -217,13 +228,6 @@ public class CopyRuneLiteClasses extends AbstractInjector
} }
} }
} }
runeliteObjectVanilla.addMethod(method);
}
inject.vanilla.addClass(runeliteObjectVanilla);
}
}
} }
private Signature getObfuscatedSignature(Signature signature) private Signature getObfuscatedSignature(Signature signature)