mirror of
https://github.com/tobspr/shapez.io.git
synced 2024-10-27 20:34:29 +00:00
undo removal of constant signal check
This commit is contained in:
parent
797bc7a3fe
commit
d2bf33dcc7
@ -98,11 +98,9 @@ export class HUDWiresOverlay extends BaseHUDPart {
|
||||
if (network && network.hasValue()) {
|
||||
value = network.currentValue;
|
||||
}
|
||||
}
|
||||
// else if (contents.components.ConstantSignal) {
|
||||
// value = contents.components.ConstantSignal.signal;
|
||||
// }
|
||||
else if (contents.components.WiredPins) {
|
||||
} else if (contents.components.ConstantSignal) {
|
||||
value = contents.components.ConstantSignal.signal;
|
||||
} else if (contents.components.WiredPins) {
|
||||
const pinComp = contents.components.WiredPins;
|
||||
const staticComp = contents.components.StaticMapEntity;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user