From 6e1dac584a72cb048fa1314fabb24df9411796f2 Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Fri, 30 Jul 2021 14:49:33 +0000
Subject: [PATCH] Change tram types: RF304 -> GT8N, RF312 -> GT8C

---
 lib/VehicleTypes.php |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/lib/VehicleTypes.php b/lib/VehicleTypes.php
index 5d96326..087391e 100644
--- a/lib/VehicleTypes.php
+++ b/lib/VehicleTypes.php
@@ -17,8 +17,9 @@
 	}
 	
 	public function getByNumber($id) {
+		$id = intval($id, 10);
 		return $this->typesByNumber[$id] ?? [
-			'num' => '??'.$id,
+			'num' => '??' . str_pad($id, 3, '0', STR_PAD_LEFT),
 			'type' => '?',
 			'low' => NULL,
 		];

--
Gitblit v1.9.1