From 9848dfa76238ff5e625671b077b355bbd596fab2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hanns=20Adrian=20B=C3=B6hme?= Date: Wed, 9 Sep 2020 20:09:39 +0200 Subject: [PATCH] Update bitmasks --- p/rmv/products.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/p/rmv/products.js b/p/rmv/products.js index 811cedc9..27486704 100644 --- a/p/rmv/products.js +++ b/p/rmv/products.js @@ -28,7 +28,7 @@ module.exports = [ { id: 's-bahn', mode: 'train', - bitmasks: [16], + bitmasks: [8], name: 'S-Bahn', short: 'S', default: true @@ -36,7 +36,7 @@ module.exports = [ { id: 'u-bahn', mode: 'train', - bitmasks: [32], + bitmasks: [16], name: 'U-Bahn', short: 'U', default: true @@ -44,7 +44,7 @@ module.exports = [ { id: 'tram', mode: 'train', - bitmasks: [64], + bitmasks: [32], name: 'Straßenbahn', short: 'Tram', default: true @@ -52,7 +52,7 @@ module.exports = [ { id: 'bus', mode: 'bus', - bitmasks: [128], + bitmasks: [64, 128], name: 'Bus', short: 'Bus', default: true