Fix the tile entity deal-io only, and also took the liberty to make

sure that the splash file doesn't prevent building. xoxo.
This commit is contained in:
Sauilitired
2019-03-31 10:39:52 +02:00
parent b09eeb587a
commit 6dd7190fc5
2 changed files with 12 additions and 11 deletions

View File

@@ -27,7 +27,11 @@ plugins {
apply plugin: 'java'
clean { delete "target" }
print new File('splash.txt').text
def splashFile = new File('splash.txt')
if (splashFile.exists()) {
print splashFile.text
}
group = 'com.boydti.fawe'