-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Additional Fixes/Preparation for an Alpha Release
- Loading branch information
1 parent
0f53ac5
commit feaff30
Showing
11 changed files
with
90 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,29 @@ | ||
package argent_matter.gtec.block; | ||
|
||
|
||
import com.gregtechceu.gtceu.api.block.ICoilType; | ||
import com.gregtechceu.gtceu.api.item.tool.GTToolType; | ||
import com.gregtechceu.gtceu.common.block.CoilBlock; | ||
import com.tterrag.registrate.util.entry.BlockEntry; | ||
import dev.latvian.mods.rhino.ast.Block; | ||
import net.minecraft.tags.BlockTags; | ||
import net.minecraft.world.level.block.Blocks; | ||
import net.minecraft.world.level.block.IceBlock; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
import java.util.function.Supplier; | ||
|
||
import static argent_matter.gtec.registry.GTECRegistries.REGISTRATE; | ||
|
||
|
||
@SuppressWarnings("unused") | ||
public class GTECBlocks { | ||
|
||
public static void init() { | ||
// Crystal Matrix Coil Block | ||
|
||
|
||
|
||
public static void init() { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
src/main/java/argent_matter/gtec/data/lang/LangHandler.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
src/main/java/argent_matter/gtec/data/recipe/CircuitRecipes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package argent_matter.gtec.data.recipe; | ||
|
||
import argent_matter.gtec.common.data.GTECItems; | ||
import com.gregtechceu.gtceu.common.data.GTItems; | ||
import com.gregtechceu.gtceu.data.recipe.CustomTags; | ||
import net.minecraft.data.recipes.FinishedRecipe; | ||
import argent_matter.gtec.GTExtendedChem; | ||
import argent_matter.gtec.common.data.GTECMaterials; | ||
import com.sun.jna.platform.win32.WinCrypt; | ||
import com.sun.jna.platform.win32.WinNT; | ||
import net.minecraft.client.model.CamelModel; | ||
import net.minecraft.data.recipes.FinishedRecipe; | ||
|
||
import java.util.Objects; | ||
import java.util.function.Consumer; | ||
import static com.gregtechceu.gtceu.api.GTValues.*; | ||
import static com.gregtechceu.gtceu.api.data.tag.TagPrefix.*; | ||
import static com.gregtechceu.gtceu.common.data.GTMaterials.*; | ||
import static com.gregtechceu.gtceu.common.data.GTRecipeTypes.*; | ||
import net.minecraft.data.recipes.FinishedRecipe; | ||
|
||
import java.util.function.Consumer; | ||
|
||
public class CircuitRecipes { | ||
public static void init(Consumer<FinishedRecipe> provider) { | ||
circuitBoardRecipess(provider); | ||
} | ||
public static void circuitBoardRecipess(Consumer<FinishedRecipe> provider) { | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
src/main/java/argent_matter/gtec/registry/GTECCreativeModeTabs.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,24 @@ | ||
package argent_matter.gtec.registry; | ||
|
||
|
||
import argent_matter.gtec.GTExtendedChem; | ||
import argent_matter.gtec.common.data.GTECItems; | ||
import com.gregtechceu.gtceu.common.data.GTCreativeModeTabs; | ||
import com.tterrag.registrate.util.entry.RegistryEntry; | ||
import net.minecraft.network.chat.Component; | ||
import net.minecraft.world.item.CreativeModeTab; | ||
|
||
import static argent_matter.gtec.registry.GTECRegistries.REGISTRATE; | ||
|
||
public class GTECCreativeModeTabs { | ||
public static RegistryEntry<CreativeModeTab> ITEM = REGISTRATE.defaultCreativeTab(GTExtendedChem.MOD_ID, | ||
builder -> builder.displayItems(new GTCreativeModeTabs.RegistrateDisplayItemsGenerator(GTExtendedChem.MOD_ID, REGISTRATE)) | ||
.icon(GTECItems.ECHO_PRINTED_CIRCUIT_BOARD::asStack) | ||
.title(Component.literal("Gregtech Extended Chemistry")) | ||
.build()) | ||
.register(); | ||
|
||
public static void init() { | ||
|
||
} | ||
} |
This file was deleted.
Oops, something went wrong.