From 06013322e04d1a4b9720f2d2290dee222cc2f0cd Mon Sep 17 00:00:00 2001 From: NopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com> Date: Sun, 4 Aug 2024 01:10:35 +1000 Subject: Fix oringo pets in the calendar overlay (#1286) --- .../moulberry/notenoughupdates/miscgui/CalendarOverlay.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscgui/CalendarOverlay.java b/src/main/java/io/github/moulberry/notenoughupdates/miscgui/CalendarOverlay.java index 57095c9f..3bee456c 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/miscgui/CalendarOverlay.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/miscgui/CalendarOverlay.java @@ -356,13 +356,14 @@ public class CalendarOverlay { } } + // Blue Whale -> Tiger -> Lion -> Monkey -> Elephant -> Giraffe String[] oringoPets = new String[]{ - "§6Lion", - "§6Monkey", "§6Elephant", - "§6Tiger", - "§6Blue Whale", "§6Giraffe", + "§6Blue Whale", + "§6Tiger", + "§6Lion", + "§6Monkey", }; public String getZooPet(long startTime) { -- cgit