This commit is contained in:
Shadows_of_Fire 2019-05-02 03:08:06 -04:00
parent b81a91d1d6
commit 1ce4d21159
2 changed files with 6 additions and 6 deletions

View file

@ -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 {

View file

@ -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;
}
}
}