Fixed wave simulation estimation

This commit is contained in:
Anuken
2022-05-07 10:45:43 -04:00
parent 8fae99e780
commit 8f2e1163dd
3 changed files with 6 additions and 6 deletions

View File

@@ -183,7 +183,7 @@ public class Turret extends ReloadTurret{
public float estimateDps(){
if(!hasAmmo()) return 0f;
return shoot.shots / reload * 60f * peekAmmo().estimateDPS() * efficiency * timeScale;
return shoot.shots / reload * 60f * peekAmmo().estimateDPS() * potentialEfficiency * timeScale;
}
@Override