Build 1.15 artifacts

This commit is contained in:
NotMyFault 2019-12-11 17:49:17 +01:00
parent 68144232ba
commit c037afaf3a
3 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@ logger.lifecycle("""
******************************************* *******************************************
""") """)
//TODO FIX THIS WHEN I FEEL LIKE IT //TODO FIX THIS WHEN I FEEL LIKE IT
var rootVersion = "1.14" var rootVersion = "1.15"
var revision: String = "" var revision: String = ""
var buildNumber = "" var buildNumber = ""
var date: String = "" var date: String = ""

View File

@ -32,9 +32,9 @@ public class FaweVersion {
@Override public String toString() { @Override public String toString() {
if (hash == 0 && build == 0) { if (hash == 0 && build == 0) {
return "FastAsyncWorldEdit-1.14-NoVer-SNAPSHOT"; return "FastAsyncWorldEdit-1.15-NoVer-SNAPSHOT";
} else { } else {
return "FastAsyncWorldEdit-1.14" + build; return "FastAsyncWorldEdit-1.15" + build;
} }
} }

View File

@ -608,7 +608,7 @@ public class TextureUtil implements TextureHolder {
} }
if (files.length == 0) { if (files.length == 0) {
getLogger(TextureUtil.class).debug( getLogger(TextureUtil.class).debug(
"Please create a `FastAsyncWorldEdit/textures` folder with `.minecraft/versions/1.14.jar` jar or mods in it. If the file exists, please make sure the server has read access to the directory"); "Please create a `FastAsyncWorldEdit/textures` folder with `.minecraft/versions/1.15.jar` jar or mods in it. If the file exists, please make sure the server has read access to the directory");
} else { } else {
for (File file : files) { for (File file : files) {
ZipFile zipFile = new ZipFile(file); ZipFile zipFile = new ZipFile(file);