Command center name added / Regression fix
This commit is contained in:
@@ -65,7 +65,7 @@ public class OverlayRenderer{
|
||||
Vector2 vec = Graphics.world(input.getMouseX(), input.getMouseY());
|
||||
Tile tile = world.tileWorld(vec.x, vec.y);
|
||||
|
||||
if(tile != null && tile.block() != Blocks.air && tile.getTeam() == players[0].getTeam()){
|
||||
if(tile != null && tile.block() != Blocks.air && tile.target().getTeam() == players[0].getTeam()){
|
||||
Tile target = tile.target();
|
||||
|
||||
if(showBlockDebug && target.entity != null){
|
||||
|
||||
@@ -3,6 +3,8 @@ package io.anuke.mindustry.graphics;
|
||||
import com.badlogic.gdx.graphics.Color;
|
||||
|
||||
public class Palette{
|
||||
public static final Color command = Color.valueOf("eab678");
|
||||
|
||||
public static final Color bulletYellow = Color.valueOf("ffeec9");
|
||||
public static final Color bulletYellowBack = Color.valueOf("f9c87a");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user