Fix editing wire tunnels
This commit is contained in:
parent
a72ec8c476
commit
f03144ba91
@ -745,10 +745,10 @@ class WireOperation extends DrawOperation {
|
|||||||
let terrain = cell[LAYERS.terrain];
|
let terrain = cell[LAYERS.terrain];
|
||||||
if (terrain.type.name === 'floor') {
|
if (terrain.type.name === 'floor') {
|
||||||
if (this.alt_mode) {
|
if (this.alt_mode) {
|
||||||
tile.wire_tunnel_directions &= ~bit;
|
terrain.wire_tunnel_directions &= ~bit;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
tile.wire_tunnel_directions |= bit;
|
terrain.wire_tunnel_directions |= bit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user