Turrets can properly replace eachother, cores can replace conveyors and minor cleanup. (#4841)

This commit is contained in:
buthed010203
2021-03-03 09:15:50 -05:00
committed by GitHub
parent ae838b9392
commit 019898dfc3
6 changed files with 7 additions and 13 deletions
@@ -1,7 +1,7 @@
package mindustry.world.meta;
public enum BlockGroup{
none, walls(true), projectors(true), turrets, transportation(true), power, liquids(true), drills, storage, units, logic(true);
none, walls(true), projectors(true), turrets(true), transportation(true), power, liquids(true), drills, units, logic(true);
/** if true, any block in this category replaces any other block in this category. */
public final boolean anyReplace;