have verbose type available from database (not used at the moment)

This commit is contained in:
Matthias Wirth
2019-09-30 21:57:34 +02:00
parent 10cb06f33e
commit 69cbc8fba6
2 changed files with 5 additions and 0 deletions

View File

@@ -122,6 +122,10 @@ function PlaneObject(icao) {
this.typeDescription = data.desc;
}
if (data.vType != null) {
this.vType = data.vType;
}
if ("wtc" in data) {
this.wtc = data.wtc;
}