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 {
|
||||
version = "1.12.2-14.23.4.2760"
|
||||
version = "1.12.2-14.23.5.2836"
|
||||
runDir = "run"
|
||||
mappings = "snapshot_20180720"
|
||||
mappings = "stable_39"
|
||||
makeObfSourceJar = false
|
||||
replaceIn "ActuallyAdditions.java"
|
||||
replace "@VERSION@", project.version.toString()
|
||||
|
@ -33,7 +33,7 @@ minecraft {
|
|||
|
||||
repositories {
|
||||
maven {
|
||||
url "http://dvs1.progwml6.com/files/maven"
|
||||
url "https://dvs1.progwml6.com/files/maven"
|
||||
}
|
||||
maven {
|
||||
url "http://tehnut.info/maven"
|
||||
|
@ -45,8 +45,8 @@ repositories {
|
|||
|
||||
dependencies {
|
||||
deobfCompile "mezz.jei:jei_1.12.2:+"
|
||||
deobfCompile "mcp.mobius.waila:Hwyla:+"
|
||||
deobfCompile "org.cyclops.commoncapabilities:CommonCapabilities:1.12.2-+"
|
||||
deobfCompile "mcp.mobius.waila:Hwyla:1.8+"
|
||||
deobfCompile ("org.cyclops.commoncapabilities:CommonCapabilities:1.12.2-+")
|
||||
}
|
||||
|
||||
processResources {
|
||||
|
|
|
@ -62,10 +62,10 @@ public class ItemBag extends ItemBase {
|
|||
if (!ItemStack.areItemStacksEqual(remain, invStack)) {
|
||||
inv.setStackInSlot(j, remain.copy());
|
||||
changed = true;
|
||||
|
||||
if (!StackUtil.isValid(remain)) {
|
||||
break;
|
||||
}
|
||||
invStack = remain;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue