Looking at your workaround, I think you got the logic backwards in this section and really wanted...LaRoso wrote: 08 Apr 2020 21:11But the train only has 2000 power on SAAN, nowhere else. What did I do wrong here?Code: Select all
switch (FEAT_TRAINS, SELF, switch_voctrenacdm_power, current_railtype) { Diesel: return 2000; return 8400; }
Code: Select all
switch (FEAT_TRAINS, SELF, switch_voctrenacdm_power, current_railtype) {
Diesel: return 8400;
return 2000;
}