This commit is contained in:
Anuken
2021-10-15 11:40:55 -04:00
parent d8cf65e24c
commit 9a5ac14bc3
5 changed files with 3 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
package mindustry.world.meta;
public enum BlockGroup{
none, walls(true), projectors(true), turrets(true), transportation(true), power, liquids(true), drills, units, logic(true);
none, walls(true), projectors(true), turrets(true), transportation(true), power, liquids(true), drills, units, logic(true), payloads(true);
/** if true, any block in this category replaces any other block in this category. */
public final boolean anyReplace;