(hex: string)
| 64 | return [...this.aircraft.values()]; |
| 65 | } |
| 66 | find(hex: string): Aircraft | undefined { |
| 67 | return this.aircraft.get(hex); |
| 68 | } |
| 69 | |
| 70 | patchConfig(patch: Partial<Config>): void { |
| 71 | const msg: ClientMessage = { type: "patchConfig", patch }; |