Skip to content

Commit

Permalink
Disables unimplemented covers (#1961)
Browse files Browse the repository at this point in the history
  • Loading branch information
Spicierspace153 authored Sep 14, 2024
1 parent 681f877 commit ef8a0ce
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 23 deletions.
13 changes: 0 additions & 13 deletions src/main/java/com/gregtechceu/gtceu/common/data/GTItems.java
Original file line number Diff line number Diff line change
Expand Up @@ -2076,11 +2076,6 @@ public Component getItemName(ItemStack stack) {
.onRegister(attach(new CoverPlaceBehavior(GTCovers.COMPUTER_MONITOR)))
.onRegister(compassNode(GTCompassSections.COVERS, GTCompassNodes.COVER))
.register();
public static ItemEntry<ComponentItem> COVER_CRAFTING = REGISTRATE
.item("crafting_table_cover", ComponentItem::create)
.lang("Crafting Table Cover")
.onRegister(compassNode(GTCompassSections.COVERS, GTCompassNodes.COVER))
.register();
public static ItemEntry<ComponentItem> COVER_SHUTTER = REGISTRATE
.item("shutter_module_cover", ComponentItem::create)
.lang("Shutter Module")
Expand All @@ -2101,14 +2096,6 @@ public Component getItemName(ItemStack stack) {
.lang("Ender Fluid Link")
.onRegister(compassNode(GTCompassSections.COVERS, GTCompassNodes.COVER))
.register();
public static ItemEntry<ComponentItem> COVER_DIGITAL_INTERFACE = REGISTRATE
.item("digital_interface_cover", ComponentItem::create)
.lang("Digital Interface")
.register();
public static ItemEntry<ComponentItem> COVER_DIGITAL_INTERFACE_WIRELESS = REGISTRATE
.item("wireless_digital_interface_cover", ComponentItem::create)
.lang("Wireless Digital Interface")
.register();
public static ItemEntry<ComponentItem> COVER_FLUID_VOIDING = REGISTRATE
.item("fluid_voiding_cover", ComponentItem::create)
.lang("Fluid Voiding Cover")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -296,16 +296,18 @@ public static void init(Consumer<FinishedRecipe> provider) {
* .outputItems(GTMachines.CENTRAL_MONITOR)
* .save(provider);
*/

ASSEMBLER_RECIPES.recipeBuilder("cover_digital_interface").duration(100).EUt(VA[HV])
.inputItems(COVER_SCREEN)
.inputItems(plate, Aluminium)
.inputItems(CustomTags.MV_CIRCUITS)
.inputItems(screw, StainlessSteel, 4)
.inputFluids(Polyethylene.getFluid(L))
.outputItems(COVER_DIGITAL_INTERFACE)
.save(provider);

/*
* ASSEMBLER_RECIPES.recipeBuilder("cover_digital_interface").duration(100).EUt(VA[HV])
* .inputItems(COVER_SCREEN)
* .inputItems(plate, Aluminium)
* .inputItems(CustomTags.MV_CIRCUITS)
* .inputItems(screw, StainlessSteel, 4)
* .inputFluids(Polyethylene.getFluid(L))
* .outputItems(COVER_DIGITAL_INTERFACE)
* .save(provider);
* \
*
*/
// todo digital interface cover
/*
* ASSEMBLER_RECIPES.recipeBuilder("cover_wireless_digital_interface").duration(100).EUt(VA[HV])
Expand Down

0 comments on commit ef8a0ce

Please sign in to comment.