Fixed compilation

This commit is contained in:
Anuken
2019-12-26 19:40:54 -05:00
parent de5979f4ee
commit 4858e602ed
18 changed files with 129 additions and 103 deletions

View File

@@ -6,10 +6,9 @@ import arc.util.*;
import mindustry.graphics.*;
public class Team implements Comparable<Team>{
public final Color color;
public final int intColor;
public final String name;
public final byte id;
public final Color color;
public String name;
/** All 256 registered teams. */
private static final Team[] all = new Team[256];
@@ -48,7 +47,6 @@ public class Team implements Comparable<Team>{
protected Team(int id, String name, Color color){
this.name = name;
this.color = color;
this.intColor = Color.rgba8888(color);
this.id = (byte)id;
int us = Pack.u(this.id);