Skip to content

Commit 1f7c905

Browse files
Fix Golden Stray Rabbit String (SkyblockerMod#790)
1 parent c87ad26 commit 1f7c905

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/main/java/de/hysky/skyblocker/skyblock/chocolatefactory/ChocolateFactorySolver.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ private static List<ColorHighlight> getStrayRabbitHighlight(Int2ObjectMap<ItemSt
244244
ItemStack item = slots.get(i);
245245
if (!item.isOf(Items.PLAYER_HEAD)) continue;
246246
String name = item.getName().getString();
247-
if (name.equals("CLICK ME!") || name.startsWith("GOLDEN RABBIT")) {
247+
if (name.equals("CLICK ME!") || name.startsWith("Golden Rabbit - ")) {
248248
highlights.add(ColorHighlight.green(i));
249249
}
250250
}

0 commit comments

Comments
 (0)