From 1b7c528d8491bc362eabe2ff49f7cff60d76a2e4 Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Wed, 13 Mar 2019 00:03:41 +0000
Subject: [PATCH] Allow switching between tram and bus stop
---
common.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/common.js b/common.js
index f238013..12021ce 100644
--- a/common.js
+++ b/common.js
@@ -117,7 +117,7 @@
function depotIdToVehicleId(depotId, typeHelper) {
if(typeHelper) {
for(var prop in vehicles_info) {
- if(prop.substr(0,1) == type && vehicles_info[prop]['num'].substr(2) == depotId) {
+ if(prop.substr(0,1) == typeHelper && vehicles_info[prop]['num'].substr(2) == depotId) {
return prop;
}
}
--
Gitblit v1.10.0