Private
Public Access
1
0

Update version to 0.2.3, add logging for logistic and train statistics, and improve research time estimation

This commit is contained in:
Jan Grießhaber
2026-01-04 11:05:07 +01:00
parent a44d27c386
commit 4b10091d1a
4 changed files with 8 additions and 1 deletions

View File

@@ -255,8 +255,11 @@ function SendTrainStats()
returnParts[#returnParts+1] = GetTrainTotalKills()
returnParts[#returnParts+1] = GetTrainStates()
returnParts[#returnParts+1] = GetTrainStatistics()
helpers.send_udp(udpAddress,table.concat(returnParts,"\n"),serverIndex)
returnParts = {}
returnParts[#returnParts+1] = GetTrainsInDepot()
returnParts[#returnParts+1] = GetTrainTripStats()
log("Sending Train statistics")
helpers.send_udp(udpAddress,table.concat(returnParts,"\n"),serverIndex)
end
end