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 and krossgg committed Sep 24, 2024
1 parent 247c762 commit a7d90be
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 23 deletions.
15 changes: 2 additions & 13 deletions src/main/java/com/gregtechceu/gtceu/data/item/GTItems.java
Original file line number Diff line number Diff line change
Expand Up @@ -2135,11 +2135,8 @@ 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::new)
.lang("Crafting Table Cover")
.onRegister(compassNode(GTCompassSections.COVERS, GTCompassNodes.COVER))
.register();
public static ItemEntry<ComponentItem> COVER_SHUTTER = REGISTRATE.item("shutter_module_cover", ComponentItem::new)
public static ItemEntry<ComponentItem> COVER_SHUTTER = REGISTRATE
.item("shutter_module_cover", ComponentItem::create)
.lang("Shutter Module")
.onRegister(compassNode(GTCompassSections.COVERS, GTCompassNodes.COVER))
.onRegister(attach(new CoverPlaceBehavior(GTCovers.SHUTTER)))
Expand All @@ -2158,14 +2155,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::new)
.lang("Digital Interface")
.register();
public static ItemEntry<ComponentItem> COVER_DIGITAL_INTERFACE_WIRELESS = REGISTRATE
.item("wireless_digital_interface_cover", ComponentItem::new)
.lang("Wireless Digital Interface")
.register();
public static ItemEntry<ComponentItem> COVER_FLUID_VOIDING = REGISTRATE
.item("fluid_voiding_cover", ComponentItem::new)
.lang("Fluid Voiding Cover")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -294,16 +294,18 @@ public static void init(RecipeOutput 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 a7d90be

Please sign in to comment.