BlockTagGenerator formatting

This commit is contained in:
aeonic
2022-06-10 18:43:33 -05:00
committed by Raoul
parent b6de5f553a
commit 3a17b00c29

View File

@@ -25,6 +25,18 @@ public class BlockTagGenerator extends BlockTagsProvider {
RSBlocks.STORAGE_BLOCKS.forEach((tag, block) -> noRelocationTag.add(block.get()));
RSBlocks.FLUID_STORAGE_BLOCKS.forEach((tag, block) -> noRelocationTag.add(block.get()));
noRelocationTag.add(RSBlocks.IMPORTER.get(), RSBlocks.EXPORTER.get(), RSBlocks.EXTERNAL_STORAGE.get(), RSBlocks.DISK_DRIVE.get(), RSBlocks.INTERFACE.get(), RSBlocks.FLUID_INTERFACE.get(), RSBlocks.STORAGE_MONITOR.get(), RSBlocks.CONSTRUCTOR.get(), RSBlocks.DESTRUCTOR.get(), RSBlocks.PORTABLE_GRID.get(), RSBlocks.CREATIVE_PORTABLE_GRID.get());
noRelocationTag.add(
RSBlocks.IMPORTER.get(),
RSBlocks.EXPORTER.get(),
RSBlocks.EXTERNAL_STORAGE.get(),
RSBlocks.DISK_DRIVE.get(),
RSBlocks.INTERFACE.get(),
RSBlocks.FLUID_INTERFACE.get(),
RSBlocks.STORAGE_MONITOR.get(),
RSBlocks.CONSTRUCTOR.get(),
RSBlocks.DESTRUCTOR.get(),
RSBlocks.PORTABLE_GRID.get(),
RSBlocks.CREATIVE_PORTABLE_GRID.get()
);
}
}