mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-02-05 00:17:33 +07:00
Fixed maxProduction stat being perSecond
This commit is contained in:
parent
bac4bb8c8f
commit
7938e02e78
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user