Skip to content

Commit

Permalink
Changed boulders/bushes/trees map color
Browse files Browse the repository at this point in the history
  • Loading branch information
romovs committed Sep 8, 2015
1 parent 8a205a2 commit da5e2c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/haven/LocalMiniMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ public void drawicons(GOut g) {
Coord pc = p2c(gob.rc).add(delta).sub(3, 3);
g.chcolor(Color.BLACK);
g.frect(pc, new Coord(6, 6));
g.chcolor(new Color(0x777777));
g.chcolor(Color.CYAN);
g.frect(pc.add(1, 1), new Coord(4, 4));
g.chcolor();
recognized = true;
Expand Down Expand Up @@ -251,7 +251,7 @@ public void drawicons(GOut g) {
for (String name : Config.bushessel) {
if (basename.startsWith(name)) {
Coord pc = p2c(gob.rc).add(delta).sub(3, 3);
g.atextstroked("*", pc, new Color(0x777777), Color.BLACK);
g.atextstroked("*", pc, Color.CYAN, Color.BLACK);
recognized = true;
break;
}
Expand All @@ -277,7 +277,7 @@ public void drawicons(GOut g) {
for (String name : Config.treessel) {
if (basename.equals(name)) {
Coord pc = p2c(gob.rc).add(delta).sub(3, 3);
g.atextstroked("\u25B2", pc, new Color(0x777777), Color.BLACK);
g.atextstroked("\u25B2", pc, Color.CYAN, Color.BLACK);
recognized = true;
break;
}
Expand Down

0 comments on commit da5e2c4

Please sign in to comment.