Merge remote-tracking branch 'origin/master'

This commit is contained in:
Anuken 2021-01-27 11:49:08 -05:00
commit d0572a2a0d
2 changed files with 2 additions and 1 deletions

View file

@ -1662,6 +1662,7 @@ public class Blocks implements ContentList{
shootEffect = Fx.shootLiquid;
range = 190f;
health = 250 * size * size;
flags = EnumSet.of(BlockFlag.turret, BlockFlag.extinguisher);
}};
fuse = new ItemTurret("fuse"){{

View file

@ -10,7 +10,7 @@ public class SolarGenerator extends PowerGenerator{
public SolarGenerator(String name){
super(name);
//remove the BlockFlag.producer flag to make this a lower priority target than other generators.
//remove the BlockFlag.generator flag to make this a lower priority target than other generators.
flags = EnumSet.of();
}