Fixed #2892 Added Dark Green color. Thanks to SimonFlapse
* Changed the processing message of block breaker and placer to use dark green instead of green
This commit is contained in:
parent
7f2912009b
commit
852c867a0d
3 changed files with 3 additions and 2 deletions
|
@ -30,6 +30,7 @@ public class Color {
|
|||
public final static Color WHITE = new Color(255, 255, 255);
|
||||
public final static Color RED = new Color(255, 0, 0);
|
||||
public final static Color GREEN = new Color(0, 255, 0);
|
||||
public final static Color DARK_GREEN = new Color(0, 128, 0);
|
||||
public final static Color BLUE = new Color(0, 0, 255);
|
||||
|
||||
private final int color;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue