diff --git a/gradle.properties b/gradle.properties index d2afbddef..1d2caaed6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,5 +13,5 @@ mod_description=A Warfare Mod minecraft_version=1.20.1 jei_version=15.2.0.27 cloth_config_version=11.1.106 -mod_version=0.3.2 +mod_version=0.3.3 mod_authors=Atsuishio, Roki27, Light_Quanta \ No newline at end of file diff --git a/src/main/java/com/atsuishio/superbwarfare/entity/SpeedboatEntity.java b/src/main/java/com/atsuishio/superbwarfare/entity/SpeedboatEntity.java index 545f12db4..3bf4fc352 100644 --- a/src/main/java/com/atsuishio/superbwarfare/entity/SpeedboatEntity.java +++ b/src/main/java/com/atsuishio/superbwarfare/entity/SpeedboatEntity.java @@ -307,7 +307,7 @@ public class SpeedboatEntity extends Entity implements GeoEntity, IChargeEntity, if (this.onGround()) { this.setDeltaMovement(this.getDeltaMovement().multiply(0.2, 0.85, 0.2)); } else { - float f = 0.73f + 0.09f * Mth.abs(90 - (float) calculateAngle(this.getDeltaMovement(), this.getViewVector(1))) / 90; + float f = 0.74f + 0.09f * Mth.abs(90 - (float) calculateAngle(this.getDeltaMovement(), this.getViewVector(1))) / 90; this.setDeltaMovement(this.getDeltaMovement().add(this.getViewVector(1).normalize().scale(0.04 * this.getDeltaMovement().length()))); this.setDeltaMovement(this.getDeltaMovement().multiply(f, 0.85, f)); } diff --git a/src/main/resources/assets/superbwarfare/textures/entity/speedboat_power.png b/src/main/resources/assets/superbwarfare/textures/entity/speedboat_power.png index d7d2adf6b..8747624de 100644 Binary files a/src/main/resources/assets/superbwarfare/textures/entity/speedboat_power.png and b/src/main/resources/assets/superbwarfare/textures/entity/speedboat_power.png differ