Skip to content

Commit bf8518e

Browse files
committed
No shoot effect
1 parent ca84167 commit bf8518e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/progressed/content/blocks/PMBlocks.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,7 @@ public void setStats(){
949949
recoil = 0.5f;
950950
rotateSpeed = 0.9f;
951951
shootSound = Sounds.missileLaunch;
952-
shootEffect = Fx.shootBig;
952+
shootEffect = Fx.none;
953953
smokeEffect = Fx.shootSmokeMissile;
954954

955955
unitSort = UnitSorts.strongest;

src/progressed/content/bullets/PayloadBullets.java

+3
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ public static void load(){
4343

4444
arbalestBasic = new BulletType(0f, 0f){{
4545
ammoMultiplier = 1f;
46+
shootEffect = smokeEffect = Fx.none;
4647

4748
spawnUnit = new RocketUnitType("basic-rocket-b", true){{
4849
engineColor = trailColor = PMPal.missileBasic;
@@ -66,6 +67,7 @@ public static void load(){
6667

6768
arbalestIncend = new BulletType(0f, 0f){{
6869
ammoMultiplier = 1f;
70+
shootEffect = smokeEffect = Fx.none;
6971

7072
spawnUnit = new RocketUnitType("incendiary-rocket-b", true){{
7173
engineColor = trailColor = Pal.remove;
@@ -92,6 +94,7 @@ public static void load(){
9294

9395
arbalestSplitter = new BulletType(0f, 0f){{
9496
ammoMultiplier = 1f;
97+
shootEffect = smokeEffect = Fx.none;
9598

9699
spawnUnit = new RocketUnitType("splitter-rocket-b", true){{
97100
engineColor = trailColor = Pal.accent;

0 commit comments

Comments
 (0)