Update dependencies

This commit is contained in:
Raoul Van den Berge
2016-10-30 20:35:44 +01:00
parent d4404e0d74
commit b583f505bc
3 changed files with 12 additions and 12 deletions

View File

@@ -28,10 +28,10 @@ sourceCompatibility = 1.8
targetCompatibility = 1.8 targetCompatibility = 1.8
minecraft { minecraft {
version = "1.10.2-12.18.1.2095" version = "1.10.2-12.18.2.2116"
runDir = "run" runDir = "run"
useDepAts = true useDepAts = true
mappings = "snapshot_20160910" mappings = "snapshot_20161030"
} }
repositories { repositories {
@@ -51,10 +51,10 @@ repositories {
} }
dependencies { dependencies {
deobfCompile "mezz.jei:jei_1.10.2:3.12.+:api" deobfCompile "mezz.jei:jei_1.10.2:3.13.+:api"
runtime "mezz.jei:jei_1.10.2:3.12.+" runtime "mezz.jei:jei_1.10.2:3.13.+"
compile "net.darkhax.tesla:Tesla:1.10-1.2.+" compile "net.darkhax.tesla:Tesla:1.10-1.2.+"
compile "net.industrial-craft:industrialcraft-2:2.6.67-ex110:api" compile "net.industrial-craft:industrialcraft-2:2.6.96-ex110:api"
deobfCompile "MCMultiPart:MCMultiPart:1.2.1+:universal" deobfCompile "MCMultiPart:MCMultiPart:1.2.1+:universal"
} }

View File

@@ -8,14 +8,14 @@ public enum AccessType {
* Insert and extract ability. * Insert and extract ability.
*/ */
INSERT_EXTRACT(0), INSERT_EXTRACT(0),
/**
* Only extract ability.
*/
EXTRACT(1),
/** /**
* Only insert ability. * Only insert ability.
*/ */
INSERT(2); INSERT(1),
/**
* Only extract ability.
*/
EXTRACT(2);
private int id; private int id;

View File

@@ -136,8 +136,8 @@ sidebutton.refinedstorage:destructor.pickup=Pickup items instead of breaking
sidebutton.refinedstorage:access_type=Access Type sidebutton.refinedstorage:access_type=Access Type
sidebutton.refinedstorage:access_type.0=Insert and extract sidebutton.refinedstorage:access_type.0=Insert and extract
sidebutton.refinedstorage:access_type.1=Only extract sidebutton.refinedstorage:access_type.1=Only insert
sidebutton.refinedstorage:access_type.2=Only insert sidebutton.refinedstorage:access_type.2=Only extract
block.refinedstorage:controller.0.name=Controller block.refinedstorage:controller.0.name=Controller
block.refinedstorage:controller.1.name=Creative Controller block.refinedstorage:controller.1.name=Creative Controller