Added alpha drone swarm ability

This commit is contained in:
Anuken
2018-08-24 13:54:53 -04:00
parent 5e8686db77
commit 94805259d7
14 changed files with 672 additions and 527 deletions

View File

@@ -44,7 +44,7 @@ allprojects {
generateLocales = {
def output = '["en",'
def bundles = new File('core/assets/bundles/')
def bundles = new File(project(':core').projectDir, 'assets/bundles/')
bundles.listFiles().each { other ->
if(other.name == "bundle.properties") return;
output += '"' + other.name.substring("bundle".length() + 1, other.name.lastIndexOf('.')) + '",'
@@ -54,7 +54,7 @@ allprojects {
}
writeVersion = {
def pfile = new File('core/assets/version.properties')
def pfile = new File(project(':core').projectDir, 'assets/version.properties')
def props = new Properties()
try{