Rename MainItemGroup to MainCreativeTab

This commit is contained in:
raoulvdberge
2021-12-18 22:13:36 +01:00
parent 4ef36c24a6
commit dd3b986450
28 changed files with 30 additions and 30 deletions

View File

@@ -5,7 +5,7 @@ import com.refinedmods.refinedstorage.config.ClientConfig;
import com.refinedmods.refinedstorage.config.ServerConfig; import com.refinedmods.refinedstorage.config.ServerConfig;
import com.refinedmods.refinedstorage.datageneration.DataGenerators; import com.refinedmods.refinedstorage.datageneration.DataGenerators;
import com.refinedmods.refinedstorage.integration.curios.CuriosIntegration; import com.refinedmods.refinedstorage.integration.curios.CuriosIntegration;
import com.refinedmods.refinedstorage.item.group.MainItemGroup; import com.refinedmods.refinedstorage.item.group.MainCreativeTab;
import com.refinedmods.refinedstorage.network.NetworkHandler; import com.refinedmods.refinedstorage.network.NetworkHandler;
import com.refinedmods.refinedstorage.setup.ClientSetup; import com.refinedmods.refinedstorage.setup.ClientSetup;
import com.refinedmods.refinedstorage.setup.CommonSetup; import com.refinedmods.refinedstorage.setup.CommonSetup;
@@ -28,7 +28,7 @@ public final class RS {
public static final String NAME = "Refined Storage"; public static final String NAME = "Refined Storage";
public static final NetworkHandler NETWORK_HANDLER = new NetworkHandler(); public static final NetworkHandler NETWORK_HANDLER = new NetworkHandler();
public static final CreativeModeTab MAIN_GROUP = new MainItemGroup(); public static final CreativeModeTab CREATIVE_TAB = new MainCreativeTab();
public static final ServerConfig SERVER_CONFIG = new ServerConfig(); public static final ServerConfig SERVER_CONFIG = new ServerConfig();
public static final ClientConfig CLIENT_CONFIG = new ClientConfig(); public static final ClientConfig CLIENT_CONFIG = new ClientConfig();

View File

@@ -207,7 +207,7 @@ public final class RSItems {
} }
private static <T extends BaseBlock> RegistryObject<BlockItem> registerBlockItemFor(RegistryObject<T> block) { private static <T extends BaseBlock> RegistryObject<BlockItem> registerBlockItemFor(RegistryObject<T> block) {
return ITEMS.register(block.getId().getPath(), () -> new BaseBlockItem(block.get(), new Item.Properties().tab(RS.MAIN_GROUP))); return ITEMS.register(block.getId().getPath(), () -> new BaseBlockItem(block.get(), new Item.Properties().tab(RS.CREATIVE_TAB)));
} }
public static void register() { public static void register() {

View File

@@ -5,7 +5,7 @@ import net.minecraft.world.item.Item;
public class CoreItem extends Item { public class CoreItem extends Item {
public CoreItem() { public CoreItem() {
super(new Item.Properties().tab(RS.MAIN_GROUP)); super(new Item.Properties().tab(RS.CREATIVE_TAB));
} }
public enum Type { public enum Type {

View File

@@ -40,7 +40,7 @@ public class CoverItem extends Item {
public CoverItem() { public CoverItem() {
super(new Item.Properties().tab(RS.MAIN_GROUP)); super(new Item.Properties().tab(RS.CREATIVE_TAB));
} }
public static void setItem(ItemStack cover, ItemStack item) { public static void setItem(ItemStack cover, ItemStack item) {

View File

@@ -41,7 +41,7 @@ public class FilterItem extends Item {
private static final String NBT_TYPE = "Type"; private static final String NBT_TYPE = "Type";
public FilterItem() { public FilterItem() {
super(new Item.Properties().tab(RS.MAIN_GROUP).stacksTo(1)); super(new Item.Properties().tab(RS.CREATIVE_TAB).stacksTo(1));
} }
public static int getCompare(ItemStack stack) { public static int getCompare(ItemStack stack) {

View File

@@ -35,7 +35,7 @@ public class FluidStorageDiskItem extends Item implements IStorageDiskProvider {
private final FluidStorageType type; private final FluidStorageType type;
public FluidStorageDiskItem(FluidStorageType type) { public FluidStorageDiskItem(FluidStorageType type) {
super(new Item.Properties().tab(RS.MAIN_GROUP).stacksTo(1)); super(new Item.Properties().tab(RS.CREATIVE_TAB).stacksTo(1));
this.type = type; this.type = type;
} }

View File

@@ -7,7 +7,7 @@ import net.minecraft.world.item.Item;
public class FluidStoragePartItem extends Item { public class FluidStoragePartItem extends Item {
public FluidStoragePartItem() { public FluidStoragePartItem() {
super(new Item.Properties().tab(RS.MAIN_GROUP)); super(new Item.Properties().tab(RS.CREATIVE_TAB));
} }
public static FluidStoragePartItem getByType(FluidStorageType type) { public static FluidStoragePartItem getByType(FluidStorageType type) {

View File

@@ -28,7 +28,7 @@ public class NetworkCardItem extends Item {
private static final String NBT_DIMENSION = "Dimension"; private static final String NBT_DIMENSION = "Dimension";
public NetworkCardItem() { public NetworkCardItem() {
super(new Item.Properties().tab(RS.MAIN_GROUP).stacksTo(1)); super(new Item.Properties().tab(RS.CREATIVE_TAB).stacksTo(1));
} }
@Nullable @Nullable

View File

@@ -54,7 +54,7 @@ public class PatternItem extends Item implements ICraftingPatternProvider, IItem
private static final int VERSION = 1; private static final int VERSION = 1;
public PatternItem() { public PatternItem() {
super(new Item.Properties().tab(RS.MAIN_GROUP)); super(new Item.Properties().tab(RS.CREATIVE_TAB));
} }
public static ICraftingPattern fromCache(Level level, ItemStack stack) { public static ICraftingPattern fromCache(Level level, ItemStack stack) {

View File

@@ -5,6 +5,6 @@ import net.minecraft.world.item.Item;
public class ProcessorBindingItem extends Item { public class ProcessorBindingItem extends Item {
public ProcessorBindingItem() { public ProcessorBindingItem() {
super(new Item.Properties().tab(RS.MAIN_GROUP)); super(new Item.Properties().tab(RS.CREATIVE_TAB));
} }
} }

View File

@@ -5,7 +5,7 @@ import net.minecraft.world.item.Item;
public class ProcessorItem extends Item { public class ProcessorItem extends Item {
public ProcessorItem() { public ProcessorItem() {
super(new Item.Properties().tab(RS.MAIN_GROUP)); super(new Item.Properties().tab(RS.CREATIVE_TAB));
} }
public enum Type { public enum Type {

View File

@@ -5,6 +5,6 @@ import net.minecraft.world.item.Item;
public class QuartzEnrichedIronItem extends Item { public class QuartzEnrichedIronItem extends Item {
public QuartzEnrichedIronItem() { public QuartzEnrichedIronItem() {
super(new Item.Properties().tab(RS.MAIN_GROUP)); super(new Item.Properties().tab(RS.CREATIVE_TAB));
} }
} }

View File

@@ -25,7 +25,7 @@ public class SecurityCardItem extends Item {
private static final String NBT_PERMISSION = "Permission_%d"; private static final String NBT_PERMISSION = "Permission_%d";
public SecurityCardItem() { public SecurityCardItem() {
super(new Item.Properties().tab(RS.MAIN_GROUP).stacksTo(1)); super(new Item.Properties().tab(RS.CREATIVE_TAB).stacksTo(1));
} }
@Nullable @Nullable

View File

@@ -5,6 +5,6 @@ import net.minecraft.world.item.Item;
public class SiliconItem extends Item { public class SiliconItem extends Item {
public SiliconItem() { public SiliconItem() {
super(new Item.Properties().tab(RS.MAIN_GROUP)); super(new Item.Properties().tab(RS.CREATIVE_TAB));
} }
} }

View File

@@ -35,7 +35,7 @@ public class StorageDiskItem extends Item implements IStorageDiskProvider {
private final ItemStorageType type; private final ItemStorageType type;
public StorageDiskItem(ItemStorageType type) { public StorageDiskItem(ItemStorageType type) {
super(new Item.Properties().tab(RS.MAIN_GROUP).stacksTo(1)); super(new Item.Properties().tab(RS.CREATIVE_TAB).stacksTo(1));
this.type = type; this.type = type;
} }

View File

@@ -5,6 +5,6 @@ import net.minecraft.world.item.Item;
public class StorageHousingItem extends Item { public class StorageHousingItem extends Item {
public StorageHousingItem() { public StorageHousingItem() {
super(new Item.Properties().tab(RS.MAIN_GROUP)); super(new Item.Properties().tab(RS.CREATIVE_TAB));
} }
} }

View File

@@ -7,7 +7,7 @@ import net.minecraft.world.item.Item;
public class StoragePartItem extends Item { public class StoragePartItem extends Item {
public StoragePartItem() { public StoragePartItem() {
super(new Item.Properties().tab(RS.MAIN_GROUP)); super(new Item.Properties().tab(RS.CREATIVE_TAB));
} }
public static StoragePartItem getByType(ItemStorageType type) { public static StoragePartItem getByType(ItemStorageType type) {

View File

@@ -16,7 +16,7 @@ public class UpgradeItem extends Item {
private final Type type; private final Type type;
public UpgradeItem(Type type) { public UpgradeItem(Type type) {
super(new Item.Properties().tab(RS.MAIN_GROUP)); super(new Item.Properties().tab(RS.CREATIVE_TAB));
this.type = type; this.type = type;
} }

View File

@@ -20,7 +20,7 @@ public class WirelessCraftingMonitorItem extends NetworkItem {
private final Type type; private final Type type;
public WirelessCraftingMonitorItem(Type type) { public WirelessCraftingMonitorItem(Type type) {
super(new Item.Properties().tab(RS.MAIN_GROUP).stacksTo(1), type == Type.CREATIVE, () -> RS.SERVER_CONFIG.getWirelessCraftingMonitor().getCapacity()); super(new Item.Properties().tab(RS.CREATIVE_TAB).stacksTo(1), type == Type.CREATIVE, () -> RS.SERVER_CONFIG.getWirelessCraftingMonitor().getCapacity());
this.type = type; this.type = type;
} }

View File

@@ -17,7 +17,7 @@ public class WirelessFluidGridItem extends NetworkItem {
private final Type type; private final Type type;
public WirelessFluidGridItem(Type type) { public WirelessFluidGridItem(Type type) {
super(new Item.Properties().tab(RS.MAIN_GROUP).stacksTo(1), type == Type.CREATIVE, () -> RS.SERVER_CONFIG.getWirelessFluidGrid().getCapacity()); super(new Item.Properties().tab(RS.CREATIVE_TAB).stacksTo(1), type == Type.CREATIVE, () -> RS.SERVER_CONFIG.getWirelessFluidGrid().getCapacity());
this.type = type; this.type = type;
} }

View File

@@ -17,7 +17,7 @@ public class WirelessGridItem extends NetworkItem {
private final Type type; private final Type type;
public WirelessGridItem(Type type) { public WirelessGridItem(Type type) {
super(new Item.Properties().tab(RS.MAIN_GROUP).stacksTo(1), type == Type.CREATIVE, () -> RS.SERVER_CONFIG.getWirelessGrid().getCapacity()); super(new Item.Properties().tab(RS.CREATIVE_TAB).stacksTo(1), type == Type.CREATIVE, () -> RS.SERVER_CONFIG.getWirelessGrid().getCapacity());
this.type = type; this.type = type;
} }

View File

@@ -18,7 +18,7 @@ import net.minecraftforge.items.ItemHandlerHelper;
public class WrenchItem extends Item { public class WrenchItem extends Item {
public WrenchItem() { public WrenchItem() {
super(new Item.Properties().tab(RS.MAIN_GROUP).stacksTo(1)); super(new Item.Properties().tab(RS.CREATIVE_TAB).stacksTo(1));
} }
@Override @Override

View File

@@ -14,7 +14,7 @@ public class ControllerBlockItem extends EnergyBlockItem {
private final Component displayName; private final Component displayName;
public ControllerBlockItem(ControllerBlock block, DyeColor color, Component displayName) { public ControllerBlockItem(ControllerBlock block, DyeColor color, Component displayName) {
super(block, new Item.Properties().tab(RS.MAIN_GROUP).stacksTo(1), block.getType() == NetworkType.CREATIVE, () -> RS.SERVER_CONFIG.getController().getCapacity()); super(block, new Item.Properties().tab(RS.CREATIVE_TAB).stacksTo(1), block.getType() == NetworkType.CREATIVE, () -> RS.SERVER_CONFIG.getController().getCapacity());
if (color != ColorMap.DEFAULT_COLOR) { if (color != ColorMap.DEFAULT_COLOR) {
this.displayName = new TranslatableComponent("color.minecraft." + color.getName()) this.displayName = new TranslatableComponent("color.minecraft." + color.getName())

View File

@@ -35,7 +35,7 @@ public class FluidStorageBlockItem extends BaseBlockItem {
private final FluidStorageType type; private final FluidStorageType type;
public FluidStorageBlockItem(FluidStorageBlock block) { public FluidStorageBlockItem(FluidStorageBlock block) {
super(block, new Item.Properties().tab(RS.MAIN_GROUP)); super(block, new Item.Properties().tab(RS.CREATIVE_TAB));
this.type = block.getType(); this.type = block.getType();
} }

View File

@@ -29,7 +29,7 @@ public class PortableGridBlockItem extends EnergyBlockItem {
public PortableGridBlockItem(Type type) { public PortableGridBlockItem(Type type) {
super( super(
type == Type.CREATIVE ? RSBlocks.CREATIVE_PORTABLE_GRID.get() : RSBlocks.PORTABLE_GRID.get(), type == Type.CREATIVE ? RSBlocks.CREATIVE_PORTABLE_GRID.get() : RSBlocks.PORTABLE_GRID.get(),
new Item.Properties().tab(RS.MAIN_GROUP).stacksTo(1), new Item.Properties().tab(RS.CREATIVE_TAB).stacksTo(1),
type == Type.CREATIVE, type == Type.CREATIVE,
() -> RS.SERVER_CONFIG.getPortableGrid().getCapacity() () -> RS.SERVER_CONFIG.getPortableGrid().getCapacity()
); );

View File

@@ -32,7 +32,7 @@ public class StorageBlockItem extends BaseBlockItem {
private final ItemStorageType type; private final ItemStorageType type;
public StorageBlockItem(StorageBlock block) { public StorageBlockItem(StorageBlock block) {
super(block, new Item.Properties().tab(RS.MAIN_GROUP)); super(block, new Item.Properties().tab(RS.CREATIVE_TAB));
this.type = block.getType(); this.type = block.getType();
} }

View File

@@ -6,8 +6,8 @@ import com.refinedmods.refinedstorage.util.ColorMap;
import net.minecraft.world.item.CreativeModeTab; import net.minecraft.world.item.CreativeModeTab;
import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.ItemStack;
public class MainItemGroup extends CreativeModeTab { public class MainCreativeTab extends CreativeModeTab {
public MainItemGroup() { public MainCreativeTab() {
super(RS.ID); super(RS.ID);
} }

View File

@@ -95,7 +95,7 @@ public class ColorMap<T extends IForgeRegistryEntry<? super T>> {
block.getId().getPath(), block.getId().getPath(),
() -> new ColoredBlockItem( () -> new ColoredBlockItem(
block.get(), block.get(),
new Item.Properties().tab(RS.MAIN_GROUP), new Item.Properties().tab(RS.CREATIVE_TAB),
color, color,
BlockUtils.getBlockTranslation(translationBlock.get()) BlockUtils.getBlockTranslation(translationBlock.get())
) )