From d1df7b53cb725dd2b661c5868374167e75c97088 Mon Sep 17 00:00:00 2001 From: Beny Date: Mon, 3 Jun 2019 22:50:18 +0100 Subject: [PATCH] Match GameTeamColors with Habbo --- .../habbohotel/games/GameTeamColors.java | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/src/main/java/com/eu/habbo/habbohotel/games/GameTeamColors.java b/src/main/java/com/eu/habbo/habbohotel/games/GameTeamColors.java index 0a573e3c..1f22eb55 100644 --- a/src/main/java/com/eu/habbo/habbohotel/games/GameTeamColors.java +++ b/src/main/java/com/eu/habbo/habbohotel/games/GameTeamColors.java @@ -2,19 +2,12 @@ package com.eu.habbo.habbohotel.games; public enum GameTeamColors { - RED(0), + NONE(0), - - GREEN(1), - - - BLUE(2), - - - YELLOW(3), - - - NONE(4), + RED(1), + GREEN(2), + BLUE(3), + YELLOW(4), ONE(5), TWO(6), @@ -41,6 +34,6 @@ public enum GameTeamColors { } } - return RED; + return NONE; } }