Fixed maxProduction stat being perSecond

This commit is contained in:
Anuken 2020-12-04 15:21:43 -05:00
parent bac4bb8c8f
commit 7938e02e78

View File

@ -99,7 +99,7 @@ public class SStats implements SteamUserStatsCallback{
for(Sector sec : planet.sectors){
if(sec.hasBase()){
for(var v : sec.info.production.values()){
total += v.mean;
total += (int)(v.mean * 60);
}
}
}