Hi there,
first of all, thanks for this mod, I was really looking for something like this :)
I have two "problems" though:
If you build the Train Creator Chest and connect it without giving the required informations, like how many locomotives are required, the game instantly crashes. Not a big deal if you know this, but maybe this can be fixed.
The second thing is I use the mod Logistic Train Network which uses a different kind of station. It would be nice if you could include this in your mod. I already did that for my own version by adding "logistic-train-stop" additionally to "train-stop" in the updateTrainCreator function and it works. Looks like this:
.....
if ent.name == "logistic-train-stop" then
station_count = station_count + 1
stop = ent
end
.....
if ent.name == "logistic-train-stop" then
station_count = station_count + 1
stop = ent
end
....
but I really dont know if that could break anything.
Would be awesome if could include that.
Thanks again.