mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Closes #1092
This commit is contained in:
parent
b81a91d1d6
commit
1ce4d21159
2 changed files with 6 additions and 6 deletions
10
build.gradle
10
build.gradle
|
@ -23,9 +23,9 @@ if(hasProperty('buildnumber')){
|
||||||
}
|
}
|
||||||
|
|
||||||
minecraft {
|
minecraft {
|
||||||
version = "1.12.2-14.23.4.2760"
|
version = "1.12.2-14.23.5.2836"
|
||||||
runDir = "run"
|
runDir = "run"
|
||||||
mappings = "snapshot_20180720"
|
mappings = "stable_39"
|
||||||
makeObfSourceJar = false
|
makeObfSourceJar = false
|
||||||
replaceIn "ActuallyAdditions.java"
|
replaceIn "ActuallyAdditions.java"
|
||||||
replace "@VERSION@", project.version.toString()
|
replace "@VERSION@", project.version.toString()
|
||||||
|
@ -33,7 +33,7 @@ minecraft {
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven {
|
maven {
|
||||||
url "http://dvs1.progwml6.com/files/maven"
|
url "https://dvs1.progwml6.com/files/maven"
|
||||||
}
|
}
|
||||||
maven {
|
maven {
|
||||||
url "http://tehnut.info/maven"
|
url "http://tehnut.info/maven"
|
||||||
|
@ -45,8 +45,8 @@ repositories {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
deobfCompile "mezz.jei:jei_1.12.2:+"
|
deobfCompile "mezz.jei:jei_1.12.2:+"
|
||||||
deobfCompile "mcp.mobius.waila:Hwyla:+"
|
deobfCompile "mcp.mobius.waila:Hwyla:1.8+"
|
||||||
deobfCompile "org.cyclops.commoncapabilities:CommonCapabilities:1.12.2-+"
|
deobfCompile ("org.cyclops.commoncapabilities:CommonCapabilities:1.12.2-+")
|
||||||
}
|
}
|
||||||
|
|
||||||
processResources {
|
processResources {
|
||||||
|
|
|
@ -62,10 +62,10 @@ public class ItemBag extends ItemBase {
|
||||||
if (!ItemStack.areItemStacksEqual(remain, invStack)) {
|
if (!ItemStack.areItemStacksEqual(remain, invStack)) {
|
||||||
inv.setStackInSlot(j, remain.copy());
|
inv.setStackInSlot(j, remain.copy());
|
||||||
changed = true;
|
changed = true;
|
||||||
|
|
||||||
if (!StackUtil.isValid(remain)) {
|
if (!StackUtil.isValid(remain)) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
invStack = remain;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue