diff options
| author | NopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com> | 2024-07-28 21:52:08 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-28 13:52:08 +0200 |
| commit | ef5209864d560120b003960902793a0224fb9b39 (patch) | |
| tree | f6093e043020b5577edd13df9f26e97ed471e184 | |
| parent | d9ec38a05b1fc50c16c6e570dda1147fa494ce3f (diff) | |
| download | notenoughupdates-ef5209864d560120b003960902793a0224fb9b39.tar.gz notenoughupdates-ef5209864d560120b003960902793a0224fb9b39.tar.bz2 notenoughupdates-ef5209864d560120b003960902793a0224fb9b39.zip | |
Fix winter crystal not working in the crystal overlay (#1276)
add winter crystal to crystal overlay
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/CrystalOverlay.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/CrystalOverlay.java b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/CrystalOverlay.java index 047f3c99..1b21a61e 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/CrystalOverlay.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/CrystalOverlay.java @@ -58,7 +58,8 @@ public class CrystalOverlay { DESERT(16, 0xfff178), FISHING(15, 0x1972a6), WART(5, 0x821530), - WHEAT(6, 0xff9d00); + WHEAT(6, 0xff9d00), + WINTER(16, 0x3ffcff); CrystalType(int radius, int rgb) { this.radius = radius; @@ -136,6 +137,7 @@ public class CrystalOverlay { put("949d100c-aa74-3b09-a642-af5529f808aa", CrystalType.MINING_MINION); put("bd79a474-cf07-3f8c-b5a4-98657c33520a", CrystalType.FORAGING_MINION); put("2e474ee3-5361-3218-84db-880eb1cface1", CrystalType.FISHING); + put("7a237e5c-ca9a-3dc1-b1d9-b385fc200aa7", CrystalType.WINTER); }}; public static long displayMillis = 0; |
