finished the functional part of storage as well as modified the drying dialog to remove notification interactions from the cables

This commit is contained in:
csawatzky 2026-07-10 11:59:42 -06:00
parent 2c6799bcc1
commit 208a657528
7 changed files with 193 additions and 47 deletions

View file

@ -115,13 +115,18 @@ export class Plenum {
}
public locationString(): string {
return (
or(this.settings.type, 0).toString() +
let compositeLocation = or(this.settings.type, 0).toString() +
"-" +
or(this.settings.addressType, 0).toString() +
"-" +
or(this.settings.address, 0).toString()
);
if(this.settings.expansionLine){
compositeLocation = compositeLocation + "-" + this.settings.expansionLine
}
if(this.settings.muxLine){
compositeLocation = compositeLocation + ":" + this.settings.muxLine
}
return compositeLocation;
}
public type(): quack.ComponentType {