projectors blockgroup

This commit is contained in:
Leonwang4234
2020-11-25 14:19:56 -08:00
parent 11d864f2b5
commit 2b8c11c451
4 changed files with 4 additions and 1 deletions
@@ -48,6 +48,7 @@ public class ForceProjector extends Block{
super(name);
update = true;
solid = true;
group = BlockGroup.projectors;
hasPower = true;
hasLiquids = true;
hasItems = true;
@@ -31,6 +31,7 @@ public class MendProjector extends Block{
super(name);
solid = true;
update = true;
group = BlockGroup.projectors;
hasPower = true;
hasItems = true;
}
@@ -32,6 +32,7 @@ public class OverdriveProjector extends Block{
super(name);
solid = true;
update = true;
group = BlockGroup.projectors;
hasPower = true;
hasItems = true;
canOverdrive = false;
@@ -1,5 +1,5 @@
package mindustry.world.meta;
public enum BlockGroup{
none, walls, turrets, transportation, power, liquids, drills, storage, units, logic
none, walls, projectors, turrets, transportation, power, liquids, drills, storage, units, logic
}