diff --git a/core/assets-raw/sprites/units/oct-cell.png b/core/assets-raw/sprites/units/oct-cell.png index 436242ed95..b27f93adb4 100644 Binary files a/core/assets-raw/sprites/units/oct-cell.png and b/core/assets-raw/sprites/units/oct-cell.png differ diff --git a/tools/src/mindustry/tools/Generators.java b/tools/src/mindustry/tools/Generators.java index 300fffb95a..462d9b9022 100644 --- a/tools/src/mindustry/tools/Generators.java +++ b/tools/src/mindustry/tools/Generators.java @@ -464,7 +464,7 @@ public class Generators{ Pixmap cell = baseCell.copy(); //replace with 0xffd37fff : 0xdca463ff for sharded colors? - cell.replace(in -> in == 0xffffffff ? 0xffa664ff : in == 0xdcc6c6ff ? 0xd06b53ff : 0); + cell.replace(in -> in == 0xffffffff ? 0xffa664ff : in == 0xdcc6c6ff || in == 0xdcc5c5ff ? 0xd06b53ff : 0); image.draw(cell, image.width / 2 - cell.width / 2, image.height / 2 - cell.height / 2, true);