Skip to content

Commit

Permalink
Change minimap colors to match gpg maps
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackYps committed Dec 5, 2023
1 parent 684baa1 commit ec5df0d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions shared/src/main/java/com/faforever/neroxis/map/SCMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@ public class SCMap {
private BufferedImage waterFlatnessMap;
private BufferedImage waterDepthBiasMap;
private BufferedImage terrainType;
private int cartographicContourInterval = 1000;
private int cartographicDeepWaterColor = new Color(0, 34, 255).getRGB();
private int cartographicMapContourColor = new Color(255, 0, 0).getRGB();
private int cartographicMapShoreColor = new Color(161, 192, 255).getRGB();
private int cartographicMapLandStartColor = new Color(255, 255, 255).getRGB();
private int cartographicMapLandEndColor = new Color(0, 0, 0).getRGB();
private int cartographicContourInterval = 100;
private int cartographicDeepWaterColor = new Color(71, 140, 181).getRGB();
private int cartographicMapContourColor = new Color(0, 0, 0).getRGB();
private int cartographicMapShoreColor = new Color(141, 200, 225).getRGB();
private int cartographicMapLandStartColor = new Color(119, 101, 108).getRGB();
private int cartographicMapLandEndColor = new Color(206, 206, 176).getRGB();

public SCMap(int size, Biome biome) {
this.size = size;
Expand Down

0 comments on commit ec5df0d

Please sign in to comment.