Merge remote-tracking branch 'origin/master'

This commit is contained in:
Anuken
2020-12-02 09:56:06 -05:00
5 changed files with 9 additions and 9 deletions

View File

@@ -6,7 +6,7 @@ import mindustry.gen.*;
import mindustry.content.*;
public class LaserBoltBulletType extends BasicBulletType{
protected float height = 7f, width = 2f;
public float width = 2f, height = 7f;
public LaserBoltBulletType(float speed, float damage){
super(speed, damage);

View File

@@ -242,7 +242,7 @@ public class MassDriver extends Block{
@Override
public boolean acceptItem(Building source, Item item){
//mass drivers that ouput only cannot accept items
//mass drivers that output only cannot accept items
return items.total() < itemCapacity && linkValid();
}