From fa2a7c710598a573722912d94b77a2d2a676fc02 Mon Sep 17 00:00:00 2001 From: mdb Date: Tue, 18 Dec 2001 13:14:58 +0000 Subject: [PATCH] Made the piecen color array (which is used to color the names in the player status view) match the colors of the piecens in the image. git-svn-id: https://samskivert.googlecode.com/svn/trunk@524 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- .../java/com/samskivert/atlanti/data/Feature.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/projects/atlanti/src/java/com/samskivert/atlanti/data/Feature.java b/projects/atlanti/src/java/com/samskivert/atlanti/data/Feature.java index e936148a..6d12f31c 100644 --- a/projects/atlanti/src/java/com/samskivert/atlanti/data/Feature.java +++ b/projects/atlanti/src/java/com/samskivert/atlanti/data/Feature.java @@ -1,5 +1,5 @@ // -// $Id: Feature.java,v 1.4 2001/12/18 11:58:53 mdb Exp $ +// $Id: Feature.java,v 1.5 2001/12/18 13:14:58 mdb Exp $ package com.threerings.venison; @@ -357,11 +357,12 @@ public class Feature /** Maps piecen color codes to colors. */ protected static Color[] PIECEN_COLOR_MAP = { - Color.red, // RED - Color.darkGray, // BLACK - Color.blue, // BLUE - Color.yellow, // YELLOW - Color.green, // GREEN + new Color(0x0246B7), // BLUE + new Color(0x028A12), // GREEN + new Color(0xF47A02), // ORANGE + new Color(0xC20292), // MAGENTA + new Color(0xB90202), // RED + new Color(0xFECA11), // YELLOW }; /** For rendering piecens with alpha. */