diff options
| author | NopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com> | 2024-08-04 01:10:35 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-03 17:10:35 +0200 |
| commit | 06013322e04d1a4b9720f2d2290dee222cc2f0cd (patch) | |
| tree | 90577a1fdc1edb5a6065c914ecf65072e747613b | |
| parent | e41c1694d0c6bd47f35ebcb8bdd3492d686559bc (diff) | |
| download | notenoughupdates-06013322e04d1a4b9720f2d2290dee222cc2f0cd.tar.gz notenoughupdates-06013322e04d1a4b9720f2d2290dee222cc2f0cd.tar.bz2 notenoughupdates-06013322e04d1a4b9720f2d2290dee222cc2f0cd.zip | |
Fix oringo pets in the calendar overlay (#1286)
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/miscgui/CalendarOverlay.java | 9 |
1 files 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) { |
