diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/tiles/FogOfWar.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/tiles/FogOfWar.java index a527fc534..beec35886 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/tiles/FogOfWar.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/tiles/FogOfWar.java @@ -42,19 +42,19 @@ public class FogOfWar extends Image { //first index is visibility type, second is brightness level private static final int FOG_COLORS[][] = new int[][]{{ //visible - 0xAA000000, 0x55000000, //-2 and -1 brightness + 0x55000000, 0x00000000, //-2 and -1 brightness 0x00000000, //0 brightness 0x00000000, 0x00000000 //1 and 2 brightness }, { //visited - 0xEE000000, 0xDD000000, - 0xCC000000, - 0x99000000, 0x66000000 + 0xDD000000, 0xBB000000, + 0x99000000, + 0x77000000, 0x55000000 }, { //mapped - 0xEE442211, 0xDD442211, - 0xCC442211, - 0x99442211, 0x66442211 + 0xDD221108, 0xBB442211, + 0x99663319, + 0x77884411, 0x55AA552A }, { //invisible 0xFF000000, 0xFF000000,