This commit is contained in:
Babbaj 2020-02-23 21:54:18 -05:00
parent 07c406aa16
commit ee33666b38
No known key found for this signature in database
GPG Key ID: 48FD0BEFD63C8E3F
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ public interface Helper {
static ITextComponent getPrefix() {
// Inner text component
final Calendar now = Calendar.getInstance();
final boolean xd = now.get(Calendar.MONTH) == Calendar.APRIL && now.get(Calendar.DAY_OF_MONTH) == 1;
final boolean xd = now.get(Calendar.MONTH) == Calendar.APRIL && now.get(Calendar.DAY_OF_MONTH) <= 3;
ITextComponent baritone = new TextComponentString(BaritoneAPI.getSettings().shortBaritonePrefix.value ? "B" : (xd ? "Baritoe" : "Baritone"));
baritone.getStyle().setColor(TextFormatting.LIGHT_PURPLE);