From f2a984f3e7b580aa6bd6ae0307468199c807f582 Mon Sep 17 00:00:00 2001 From: Leonwang4234 <62972692+Leonwang4234@users.noreply.github.com> Date: Fri, 23 Oct 2020 19:53:21 -0700 Subject: [PATCH] Lets hope this compiles because I don't have time to test it --- core/src/mindustry/content/Blocks.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/core/src/mindustry/content/Blocks.java b/core/src/mindustry/content/Blocks.java index 8d21893cdc..1d43e1d94b 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -1651,19 +1651,19 @@ public class Blocks implements ContentList{ float brange = range + 10f; ammo( - Items.thorium, new ShrapnelBulletType(){{ - length = brange; - damage = 105f; - ammoMultiplier = 5f; - toColor = Pal.thoriumPink; - shootEffect = smokeEffect = Fx.thoriumShoot; - }}, Items.titanium, new ShrapnelBulletType(){{ length = brange; damage = 66f; ammoMultiplier = 4f; width = 17f; reloadMultiplier = 1.3f; + }}, + Items.thorium, new ShrapnelBulletType(){{ + length = brange; + damage = 105f; + ammoMultiplier = 5f; + toColor = Pal.thoriumPink; + shootEffect = smokeEffect = Fx.thoriumShoot; }} ); }};