Fixed maxProduction stat being perSecond
This commit is contained in:
@@ -99,7 +99,7 @@ public class SStats implements SteamUserStatsCallback{
|
|||||||
for(Sector sec : planet.sectors){
|
for(Sector sec : planet.sectors){
|
||||||
if(sec.hasBase()){
|
if(sec.hasBase()){
|
||||||
for(var v : sec.info.production.values()){
|
for(var v : sec.info.production.values()){
|
||||||
total += v.mean;
|
total += (int)(v.mean * 60);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user