Match GameTeamColors with Habbo

This commit is contained in:
Beny 2019-06-03 22:50:18 +01:00
parent 72c7e43b69
commit d1df7b53cb

View File

@ -2,19 +2,12 @@ package com.eu.habbo.habbohotel.games;
public enum GameTeamColors { public enum GameTeamColors {
RED(0), NONE(0),
RED(1),
GREEN(1), GREEN(2),
BLUE(3),
YELLOW(4),
BLUE(2),
YELLOW(3),
NONE(4),
ONE(5), ONE(5),
TWO(6), TWO(6),
@ -41,6 +34,6 @@ public enum GameTeamColors {
} }
} }
return RED; return NONE;
} }
} }