From 446dd6abe5ceabc8078d62afadc504abe65a86fc Mon Sep 17 00:00:00 2001 From: Anuken Date: Tue, 15 Dec 2020 19:25:23 -0500 Subject: [PATCH] Consistent water bullet drag --- core/src/mindustry/content/Bullets.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/core/src/mindustry/content/Bullets.java b/core/src/mindustry/content/Bullets.java index 2a19289cbf..30fc1bfe79 100644 --- a/core/src/mindustry/content/Bullets.java +++ b/core/src/mindustry/content/Bullets.java @@ -444,19 +444,20 @@ public class Bullets implements ContentList{ waterShot = new LiquidBulletType(Liquids.water){{ knockback = 0.7f; + drag = 0.01f; }}; cryoShot = new LiquidBulletType(Liquids.cryofluid){{ - + drag = 0.01f; }}; slagShot = new LiquidBulletType(Liquids.slag){{ damage = 4; - drag = 0.03f; + drag = 0.01f; }}; oilShot = new LiquidBulletType(Liquids.oil){{ - drag = 0.03f; + drag = 0.01f; }}; heavyWaterShot = new LiquidBulletType(Liquids.water){{