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

View File

@ -24,6 +24,7 @@ import net.minecraft.util.text.TextComponentString;
import net.minecraft.util.text.TextFormatting;
import java.util.Arrays;
import java.util.Calendar;
import java.util.stream.Stream;
/**
@ -47,7 +48,9 @@ public interface Helper {
static ITextComponent getPrefix() {
// Inner text component
ITextComponent baritone = new TextComponentString(BaritoneAPI.getSettings().shortBaritonePrefix.value ? "B" : "Baritone");
final Calendar now = Calendar.getInstance();
final boolean xd = now.get(Calendar.MONTH) == Calendar.APRIL && now.get(Calendar.DAY_OF_MONTH) == 1;
ITextComponent baritone = new TextComponentString(BaritoneAPI.getSettings().shortBaritonePrefix.value ? "B" : (xd ? "Baritoe" : "Baritone"));
baritone.getStyle().setColor(TextFormatting.LIGHT_PURPLE);
// Outer brackets