diff --git a/res_raw/sprites/wires/display_logical_acceptor.png b/res_raw/sprites/wires/display_logical_acceptor.png index 7ab63892..e4e7aff1 100644 Binary files a/res_raw/sprites/wires/display_logical_acceptor.png and b/res_raw/sprites/wires/display_logical_acceptor.png differ diff --git a/src/js/game/systems/display.js b/src/js/game/systems/display.js index f11091b9..4540b199 100644 --- a/src/js/game/systems/display.js +++ b/src/js/game/systems/display.js @@ -84,6 +84,14 @@ export class DisplaySystem extends GameSystemWithFilter { globalConfig.tileSize ); } else if (value.getItemType() === "shape") { + if (this.root.currentLayer == "wires") { + value.drawItemCenteredClipped( + (origin.x + 0.5) * globalConfig.tileSize, + (origin.y + 0.5) * globalConfig.tileSize, + parameters, + 30 + ); + } value.drawItemCenteredClipped( (origin.x + 0.5) * globalConfig.tileSize, (origin.y + 0.5) * globalConfig.tileSize,