and the MMM-MRV.js code says (for example)
else if (trains.direction === this.config.fDestination1 || trains.direction === this.config.fDestination2 || trains.direction === this.config.fDestination3 || trains.direction === this.config.fDestination4 || trains.direction === this.config.fDestination5)
{
if (trains.Product.catOutL == "S-Bahn" || trains.Product.catOutL == "Niederflurstraßenbahn")
{ countedLinesTram = countedLinesTram + 1; }
else if (trains.Product.catOutL == "U-Bahn")
{ countedLinesSub = countedLinesSub + 1; }
else if (trains.Product.catOutL == "Niederflurbus" || trains.Product.catOutL == "Bus")
{ countedLinesBus = countedLinesBus + 1; }
else if (trains.Product.catOutL == "RB" || trains.Product.catOutL == "RE" || trains.Product.catOutL == "IC" || trains.Product.catOutL == "ICE" || trains.Product.catOutL == "R-Bahn" || trains.Product.catOutL == "EC")
{ countedLinesTrain = countedLinesTrain + 1; }
else
{ countedLines = countedLines + 1; }
}
you should not have to edit the code