diff --git a/src/main/java/com/atsuishio/superbwarfare/entity/vehicle/Ah6Entity.java b/src/main/java/com/atsuishio/superbwarfare/entity/vehicle/Ah6Entity.java index 28feac4dc..3aa6155cc 100644 --- a/src/main/java/com/atsuishio/superbwarfare/entity/vehicle/Ah6Entity.java +++ b/src/main/java/com/atsuishio/superbwarfare/entity/vehicle/Ah6Entity.java @@ -341,10 +341,10 @@ public class Ah6Entity extends ContainerMobileEntity implements GeoEntity, IHeli if (engineStartOver) { if (down) { holdPowerTick++; - this.entityData.set(POWER, Math.max(this.entityData.get(POWER) - 0.0004f * Math.min(holdPowerTick, 10), this.onGround() ? 0 : 0.01f)); + this.entityData.set(POWER, Math.max(this.entityData.get(POWER) - 0.001f * Math.min(holdPowerTick, 5), this.onGround() ? 0 : 0.025f)); } else if (backInputDown) { holdPowerTick++; - this.entityData.set(POWER, Math.max(this.entityData.get(POWER) - 0.0004f * Math.min(holdPowerTick, 10), this.onGround() ? 0 : 0.052f)); + this.entityData.set(POWER, Math.max(this.entityData.get(POWER) - 0.001f * Math.min(holdPowerTick, 5), this.onGround() ? 0 : 0.052f)); if (passenger != null) { passenger.setXRot(0.8f * passenger.getXRot()); } diff --git a/src/main/resources/data/superbwarfare/recipes/ap_head_crafting.json b/src/main/resources/data/superbwarfare/recipes/ap_head_crafting.json index c197775cd..ab28cd208 100644 --- a/src/main/resources/data/superbwarfare/recipes/ap_head_crafting.json +++ b/src/main/resources/data/superbwarfare/recipes/ap_head_crafting.json @@ -22,6 +22,6 @@ }, "result": { "item": "superbwarfare:ap_head", - "count": 1 + "count": 2 } } \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/recipes/he_head_crafting.json b/src/main/resources/data/superbwarfare/recipes/he_head_crafting.json index 258004e73..758b69e36 100644 --- a/src/main/resources/data/superbwarfare/recipes/he_head_crafting.json +++ b/src/main/resources/data/superbwarfare/recipes/he_head_crafting.json @@ -19,6 +19,6 @@ }, "result": { "item": "superbwarfare:he_head", - "count": 1 + "count": 2 } } \ No newline at end of file