diff --git a/src/main/java/com/artemis/the/gr8/playerstats/msg/components/PrideComponentFactory.java b/src/main/java/com/artemis/the/gr8/playerstats/msg/components/PrideComponentFactory.java index 71630c3..19cb4ac 100644 --- a/src/main/java/com/artemis/the/gr8/playerstats/msg/components/PrideComponentFactory.java +++ b/src/main/java/com/artemis/the/gr8/playerstats/msg/components/PrideComponentFactory.java @@ -76,16 +76,16 @@ public class PrideComponentFactory extends ComponentFactory { } private @NotNull String decorateWithRandomGradient(@NotNull String input) { - String colorString = switch (random.nextInt(9)) { - case 0 -> ""; + String colorString = switch (random.nextInt(8)) { + case 0 -> ""; case 1 -> ""; - case 2 -> ""; - case 3 -> ""; - case 4 -> ""; - case 5 -> ""; - case 6 -> ""; - case 7 -> ""; - default -> ""; + case 2 -> ""; + case 3 -> ""; + case 4 -> ""; + case 5 -> ""; + case 6 -> ""; + case 7 -> ""; + default -> ""; }; return colorString + input + ""; }