Group for unit factory

This commit is contained in:
summetdev 2020-10-31 22:30:37 +03:00
parent 05dcd7622b
commit afe3b0d111
2 changed files with 2 additions and 1 deletions

View File

@ -29,6 +29,7 @@ public class UnitFactory extends UnitBlock{
public UnitFactory(String name){
super(name);
group = BlockGroup.units;
update = true;
hasPower = true;
hasItems = true;

View File

@ -1,5 +1,5 @@
package mindustry.world.meta;
public enum BlockGroup{
none, walls, turrets, transportation, power, liquids, drills, storage
none, walls, turrets, transportation, power, liquids, drills, storage, units
}