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

@@ -36,6 +36,8 @@ function SendLogisticStats()
local returnParts = {}
returnParts[#returnParts+1] = GetAllLogisticGrids()
returnParts[#returnParts+1] = GetLogisticNetworkContents()
log("Table size logistics "..table_size(returnParts))
log("Sending logistics")
--local send = GetAllLogisticGrids().."\n"..GetLogisticNetworkContents()
helpers.send_udp(udpAddress,table.concat(returnParts,"\n"),serverIndex)
end