Fixed assertion check so it's actually enabled

Updated folder structure
This commit is contained in:
LemADEC 2017-07-01 17:19:07 +02:00
parent 2bc81d93ae
commit 3cdb002f53
24 changed files with 9 additions and 6 deletions

5
.gitignore vendored
View file

@ -6,9 +6,10 @@
.gradle/
.settings/
build/
eclipse/*
run/*
output/*
!eclipse/mods/
!run/mods-ref/
*.iml
*.iws

View file

@ -36,7 +36,7 @@ targetCompatibility = JavaVersion.VERSION_1_8
minecraft {
version = config.minecraft_version + "-" + config.forge_version
runDir = "eclipse"
runDir = "run"
// replacing
replace "@version@", project.version
@ -104,10 +104,12 @@ jar {
dependsOn copyOpenComputersCommons1, copyOpenComputersCommons2, copyOpenComputersCommons3, copyOpenComputersCommons4
manifest {
attributes 'FMLAT': 'CoFH_at.cfg'
attributes 'FMLAT': 'WarpDrive_at.cfg'
attributes 'FMLCorePlugin': 'cr0s.warpdrive.core.FMLLoadingPlugin',
'FMLCorePluginContainsFMLMod': 'true'
}
classifier = ''
destinationDir = file 'output'
}
idea {
@ -117,9 +119,9 @@ idea {
}
runClient {
jvmArgs "-Xmx1024m", "-Xms1024m"
jvmArgs "-Xmx1024m", "-Xms1024m", "-ea"
}
runServer {
jvmArgs "-Xmx1024m", "-Xms1024m"
jvmArgs "-Xmx1024m", "-Xms1024m", "-ea"
}

Binary file not shown.

Binary file not shown.