Fix compile

This commit is contained in:
Jesse Boyd 2017-02-20 11:28:11 +11:00
parent 01a7c9c388
commit b16276e1ac
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F
6 changed files with 9 additions and 11 deletions

View File

@ -28,7 +28,7 @@ ext {
date = git.head().date.format("yy.MM.dd")
revision = "-${git.head().abbreviatedId}"
parents = git.head().parentIds;
index = -74; // Offset to mach CI
index = -75; // Offset to mach CI
int major, minor, patch;
major = minor = patch = 0;
for (;parents != null && !parents.isEmpty();index++) {

View File

@ -21,12 +21,12 @@ public class ForgePlayer extends FawePlayer<EntityPlayerMP> {
@Override
public void sendTitle(String head, String sub) { // Not supported
Settings.IMP.QUEUE.PROGRESS.DISPLAY = false;
Settings.IMP.QUEUE.PROGRESS.DISPLAY = "false";
}
@Override
public void resetTitle() { // Not supported
Settings.IMP.QUEUE.PROGRESS.DISPLAY = false;
Settings.IMP.QUEUE.PROGRESS.DISPLAY = "false";
}
@Override

View File

@ -21,12 +21,12 @@ public class ForgePlayer extends FawePlayer<EntityPlayerMP> {
@Override
public void sendTitle(String head, String sub) { // Not supported
Settings.IMP.QUEUE.PROGRESS.DISPLAY = false;
Settings.IMP.QUEUE.PROGRESS.DISPLAY = "false";
}
@Override
public void resetTitle() { // Not supported
Settings.IMP.QUEUE.PROGRESS.DISPLAY = false;
Settings.IMP.QUEUE.PROGRESS.DISPLAY = "false";
}
@Override

View File

@ -21,12 +21,12 @@ public class ForgePlayer extends FawePlayer<EntityPlayerMP> {
@Override
public void sendTitle(String head, String sub) { // Not supported
Settings.IMP.QUEUE.PROGRESS.DISPLAY = false;
Settings.IMP.QUEUE.PROGRESS.DISPLAY = "false";
}
@Override
public void resetTitle() { // Not supported
Settings.IMP.QUEUE.PROGRESS.DISPLAY = false;
Settings.IMP.QUEUE.PROGRESS.DISPLAY = "false";
}
@Override

View File

@ -22,12 +22,12 @@ public class ForgePlayer extends FawePlayer<EntityPlayerMP> {
@Override
public void sendTitle(String head, String sub) { // Not supported
Settings.IMP.QUEUE.PROGRESS.DISPLAY = false;
Settings.IMP.QUEUE.PROGRESS.DISPLAY = "false";
}
@Override
public void resetTitle() { // Not supported
Settings.IMP.QUEUE.PROGRESS.DISPLAY = false;
Settings.IMP.QUEUE.PROGRESS.DISPLAY = "false";
}
@Override

View File

@ -22,12 +22,10 @@ public class ForgePlayer extends FawePlayer<EntityPlayerMP> {
@Override
public void sendTitle(String head, String sub) { // Not supported
Settings.IMP.QUEUE.PROGRESS.DISPLAY = false;
}
@Override
public void resetTitle() { // Not supported
Settings.IMP.QUEUE.PROGRESS.DISPLAY = false;
}
@Override