Turrets should consume 1 ammo/shot by default

This commit is contained in:
Anuken
2022-06-05 10:12:52 -04:00
parent 56cc88f582
commit 0177902010
2 changed files with 2 additions and 2 deletions

View File

@@ -42,7 +42,7 @@ public class Turret extends ReloadTurret{
/** Ammo units used per shot. */ /** Ammo units used per shot. */
public int ammoPerShot = 1; public int ammoPerShot = 1;
/** If true, ammo is only consumed once per shot regardless of bullet count. */ /** If true, ammo is only consumed once per shot regardless of bullet count. */
public boolean consumeAmmoOnce = false; public boolean consumeAmmoOnce = true;
/** Minimum input heat required to fire. */ /** Minimum input heat required to fire. */
public float heatRequirement = -1f; public float heatRequirement = -1f;
/** Maximum efficiency possible, if this turret uses heat. */ /** Maximum efficiency possible, if this turret uses heat. */

View File

@@ -25,4 +25,4 @@ org.gradle.caching=true
#used for slow jitpack builds; TODO see if this actually works #used for slow jitpack builds; TODO see if this actually works
org.gradle.internal.http.socketTimeout=100000 org.gradle.internal.http.socketTimeout=100000
org.gradle.internal.http.connectionTimeout=100000 org.gradle.internal.http.connectionTimeout=100000
archash=b285c727bd archash=b4b4709321