From 9739360fc19c793b5b64c5651ea58e55b9474d4b Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Fri, 21 Jun 2019 11:25:55 +0000
Subject: [PATCH] Make numToType return values for unknown vehicles
---
lib/vehicle_types.php | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/lib/vehicle_types.php b/lib/vehicle_types.php
index 7a799d9..36ec6fb 100644
--- a/lib/vehicle_types.php
+++ b/lib/vehicle_types.php
@@ -11,7 +11,11 @@
];
}
}
- return [];
+ return [
+ 'num' => '??'.$id,
+ 'type' => '?',
+ 'low' => NULL,
+ ];
}
function numToTypeT($id) {
$data = <<<'END'
--
Gitblit v1.9.1