22-07-2021, Thursday-21:02:32
Ein blindes Huhn findet gelegentlich auch ein Korn 
simconvoi.cc
Zeile 3001
R9967 -> uint16 max_amount = next_depot ? 32767 : (v->get_cargo_max() * loading_ms) / ((uint32)v->get_desc()->get_loading_time() + 1);
besser -> uint16 max_amount = next_depot ? 32767 : (v->get_cargo_max() * loading_ms) / v->get_desc()->get_loading_time() + 1;
Das ist der historische Zustand vor R99xx
so geht es wieder
warum auch immer

simconvoi.cc
Zeile 3001
R9967 -> uint16 max_amount = next_depot ? 32767 : (v->get_cargo_max() * loading_ms) / ((uint32)v->get_desc()->get_loading_time() + 1);
besser -> uint16 max_amount = next_depot ? 32767 : (v->get_cargo_max() * loading_ms) / v->get_desc()->get_loading_time() + 1;
Das ist der historische Zustand vor R99xx
so geht es wieder


warum auch immer