Skip to content
This repository has been archived by the owner on Jul 1, 2018. It is now read-only.

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
 - Fix incorrect ASM being dumped
 - Bump CCTweaks-Lua version
  • Loading branch information
SquidDev committed Sep 22, 2016
1 parent 15ba0db commit ac24aa6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Mod stuff
mc_version=1.7.10
forge_version=10.13.4.1558
mod_version=1.0.0
mod_version=1.1.0

# Various libraries
cc_version=1.75
3 changes: 2 additions & 1 deletion gradle/scripts/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'

repositories {
mavenLocal()
mavenCentral()
jcenter()

Expand Down Expand Up @@ -69,7 +70,7 @@ dependencies {
packaged "net.industrial-craft:industrialcraft-2:2.3.249-ex18:api"
packaged "openperipheral:OpenPeripheralCore-API:3.2"

shade('org.squiddev:cctweaks-lua:1.0.8') {
shade('org.squiddev:cctweaks-lua:1.0.10') {
// Different versions
exclude group: 'ComputerCraft'
exclude group: 'com.google.guava'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public byte[] transform(String className, String s2, byte[] bytes) {

try {
byte[] rewritten = patches.transform(className, bytes);
if (rewritten != bytes) writeDump(className, bytes);
if (rewritten != bytes) writeDump(className, rewritten);
return rewritten;
} catch (Exception e) {
String contents = "Cannot patch " + className + ", falling back to default";
Expand Down

0 comments on commit ac24aa6

Please sign in to comment.