Added default value for mass driver bullet

This commit is contained in:
Anuken
2021-07-19 08:44:19 -04:00
parent 1674b2dfd6
commit 34cf8466d6
2 changed files with 1 additions and 2 deletions

View File

@@ -1015,7 +1015,6 @@ public class Blocks implements ContentList{
reloadTime = 200f;
range = 440f;
consumes.power(1.75f);
bullet = new MassDriverBolt();
}};
//special transport blocks

View File

@@ -29,7 +29,7 @@ public class MassDriver extends Block{
public int minDistribute = 10;
public float knockback = 4f;
public float reloadTime = 100f;
public MassDriverBolt bullet;
public MassDriverBolt bullet = new MassDriverBolt();
public float bulletSpeed = 5.5f;
public float bulletLifetime = 200f;
public Effect shootEffect = Fx.shootBig2;