From 3a17b00c2968ee8ea2e6ab9e7c3834f730d1226f Mon Sep 17 00:00:00 2001 From: aeonic Date: Fri, 10 Jun 2022 18:43:33 -0500 Subject: [PATCH] BlockTagGenerator formatting --- .../datageneration/BlockTagGenerator.java | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/refinedmods/refinedstorage/datageneration/BlockTagGenerator.java b/src/main/java/com/refinedmods/refinedstorage/datageneration/BlockTagGenerator.java index e12188871..567872714 100644 --- a/src/main/java/com/refinedmods/refinedstorage/datageneration/BlockTagGenerator.java +++ b/src/main/java/com/refinedmods/refinedstorage/datageneration/BlockTagGenerator.java @@ -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() + ); } }