(patch: Partial<Config>)
| 194 | return this.aircraft.get(hex); |
| 195 | } |
| 196 | patchConfig(patch: Partial<Config>): void { |
| 197 | this.config = mergeConfig(this.config, patch); |
| 198 | this.events.onConfig?.(this.config); |
| 199 | } |
| 200 | } |
nothing calls this directly
no test coverage detected