From f05d1ebc78621902b2cd5f53938a9978b92119de Mon Sep 17 00:00:00 2001 From: NullReferenceExc <65529860+NullReferenceExc@users.noreply.github.com> Date: Sat, 10 Jun 2023 23:59:11 +0300 Subject: [PATCH] Update Team.java (#8700) --- core/src/mindustry/game/Team.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/game/Team.java b/core/src/mindustry/game/Team.java index d5673dfdd6..0bd8aef35b 100644 --- a/core/src/mindustry/game/Team.java +++ b/core/src/mindustry/game/Team.java @@ -41,7 +41,7 @@ public class Team implements Comparable{ static{ Mathf.rand.setSeed(8); //create the whole 256 placeholder teams - for(int i = 6; i < all.length; i++){ + for(int i = 7; i < all.length; i++){ new Team(i, "team#" + i, Color.HSVtoRGB(360f * Mathf.random(), 100f * Mathf.random(0.4f, 1f), 100f * Mathf.random(0.6f, 1f), 1f)); } Mathf.rand.setSeed(new Rand().nextLong());