Skip to content
This repository has been archived by the owner on Dec 29, 2024. It is now read-only.

Commit

Permalink
Resolve conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Elisis committed Sep 12, 2022
2 parents 9b16bd8 + 577d87a commit 19ba304
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
compile('com.github.GTNewHorizons:TecTech:5.0.22:dev')
compile('com.github.GTNewHorizons:ForestryMC:4.4.12:dev')
compile('com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:rv3-beta-96-GTNH:dev')
compile('com.github.GTNewHorizons:bartworks:0.5.71:dev')
compile('com.github.GTNewHorizons:bartworks:0.5.80:dev')
compile('com.github.GTNewHorizons:BuildCraft:7.1.27:dev')
compile('com.github.GTNewHorizons:NotEnoughItems:2.2.22:dev')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

import com.github.bartimaeusnek.bartworks.system.material.Werkstoff;
import com.github.bartimaeusnek.bartworks.util.Pair;
import net.minecraft.util.EnumChatFormatting;

/*
*
Expand All @@ -16,6 +17,9 @@
@SuppressWarnings("unchecked")
public class BotWerkstoffMaterialPool implements Runnable {

private static final String DEPRECATED =
EnumChatFormatting.DARK_RED + "Deprecated; Will be removed in the next update";

public static final Werkstoff TungsticAcid = new Werkstoff(
new short[] {0xf5, 0xf1, 0x16},
"Tungstic Acid",
Expand Down Expand Up @@ -145,6 +149,7 @@ public class BotWerkstoffMaterialPool implements Runnable {
public static final Werkstoff LMP103S = new Werkstoff(
new short[] {0xbf, 0x2f, 0xc2},
"LMP-103S",
DEPRECATED,
new Werkstoff.Stats(),
COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
Expand Down Expand Up @@ -279,6 +284,7 @@ public class BotWerkstoffMaterialPool implements Runnable {
public static final Werkstoff MonomethylhydrazineFuelMix = new Werkstoff(
new short[] {0x78, 0xe3, 0xa7},
"Monomethylhydrazine Fuel Mix",
DEPRECATED,
new Werkstoff.Stats(),
COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
Expand All @@ -287,6 +293,7 @@ public class BotWerkstoffMaterialPool implements Runnable {
public static final Werkstoff UnsymmetricalDimethylhydrazineFuelMix = new Werkstoff(
new short[] {0xc8, 0xff, 0x00},
"Unsymmetrical Dimethylhydrazine Fuel Mix",
DEPRECATED,
new Werkstoff.Stats(),
COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ public boolean isOpaqueCube() {

public static final Block COOLANT_DELIVERY_CASING = new Casing("coolant_delivery");

public static final Block SHIELDED_ACCELERATOR_CASING = new Casing("shielded_accelerator");
;


public static void registerGTMTE() {

DIGESTER = new Digester(10500, "Digester", "Digester").getStackForm(1L);
Expand All @@ -59,5 +63,8 @@ public static void registerTypical() {
GameRegistry.registerBlock(ELECTRODE_CASING, ELECTRODE_CASING.getUnlocalizedName());

GameRegistry.registerBlock(COOLANT_DELIVERY_CASING, COOLANT_DELIVERY_CASING.getUnlocalizedName());

GameRegistry.registerBlock(SHIELDED_ACCELERATOR_CASING, SHIELDED_ACCELERATOR_CASING.getUnlocalizedName());

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -1051,6 +1051,7 @@ public class WerkstoffMaterialPool implements Runnable {
.addMultipleIngotMetalWorkingItems()
.enforceUnification(),
offsetID4 + 1,

TextureSet.SET_METALLIC);

public static void runInit() {
Expand Down

0 comments on commit 19ba304

Please sign in to comment.