Fixed stairs

This commit is contained in:
thatsIch
2015-09-29 15:47:55 +02:00
parent 8b921a7b79
commit 59dbfb1452
169 changed files with 1470 additions and 1095 deletions
+11 -10
View File
@@ -1,12 +1,13 @@
// searches for NEI and Chicken stuff from compile set
// and adds them to the mods in run dir
task copyChicken(type: Copy, dependsOn: "extractUserDev") {
from { configurations.compile }
include "**/*Chicken*.jar", "**/*NotEnoughItems*.jar"
exclude "**/CodeChickenLib*" // because CCC downloads it anyways.. -_-
into file(minecraft.runDir + "/mods")
mustRunAfter "deobfBinJar"
mustRunAfter "repackMinecraft"
}
tasks.setupDevWorkspace.dependsOn copyChicken
tasks.setupDecompWorkspace.dependsOn copyChicken
// task copyChicken(type: Copy, dependsOn: "extractUserDev") {
// from { configurations.compile }
// include "**/*Chicken*.jar", "**/*NotEnoughItems*.jar"
// exclude "**/CodeChickenLib*" // because CCC downloads it anyways.. -_-
// into file(minecraft.runDir + "/mods")
// mustRunAfter "deobfBinJar"
// mustRunAfter "repackMinecraft"
// }
// tasks.setupDevWorkspace.dependsOn copyChicken
// tasks.setupDecompWorkspace.dependsOn copyChicken