File tree 3 files changed +15
-0
lines changed
src/progressed/entities/bullet
3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 6
6
import arc .math .*;
7
7
import arc .struct .*;
8
8
import arc .util .*;
9
+ import blackhole .utils .*;
9
10
import mindustry .content .*;
10
11
import mindustry .entities .*;
11
12
import mindustry .entities .bullet .*;
@@ -37,6 +38,10 @@ public class PillarFieldBulletType extends BulletType{
37
38
38
39
public Effect placeEffect = OtherFx .pillarPlace ;
39
40
41
+ static {
42
+ BlackHoleUtils .immuneBulletTypes .add (PillarFieldBulletType .class );
43
+ }
44
+
40
45
public PillarFieldBulletType (){
41
46
super ();
42
47
Original file line number Diff line number Diff line change 3
3
import arc .math .*;
4
4
import arc .math .geom .*;
5
5
import arc .util .*;
6
+ import blackhole .utils .*;
6
7
import mindustry .content .*;
7
8
import mindustry .entities .*;
8
9
import mindustry .entities .bullet .*;
@@ -20,6 +21,10 @@ public class AbyssBulletType extends BulletType{
20
21
public Effect swirlEffect = Fx .none ;
21
22
public Effect growEffect = Fx .none ;
22
23
24
+ static {
25
+ BlackHoleUtils .immuneBulletTypes .add (AbyssBulletType .class );
26
+ }
27
+
23
28
public AbyssBulletType (){
24
29
super (0.01f , 0f );
25
30
Original file line number Diff line number Diff line change 1
1
package progressed .entities .bullet .pseudo3d ;
2
2
3
3
import arc .graphics .*;
4
+ import blackhole .utils .*;
4
5
import mindustry .content .*;
5
6
import mindustry .entities .bullet .*;
6
7
import mindustry .gen .*;
@@ -16,6 +17,10 @@ public class SkyBeamBulletType extends BulletType{
16
17
public Color baseColor = PMPal .nexusLaserDark ;
17
18
public Color topColor = PMPal .nexusLaser .cpy ().a (0 );
18
19
20
+ static {
21
+ BlackHoleUtils .immuneBulletTypes .add (SkyBeamBulletType .class );
22
+ }
23
+
19
24
public SkyBeamBulletType (float speed , float damage ){
20
25
super (speed , damage );
21
26
You can’t perform that action at this time.
0 commit comments