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

Commit

Permalink
made netherite large tanks and drum acid proof
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Sep 21, 2023
1 parent 4bd1c52 commit 6beac33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/src/main/java/muramasa/gregtech/data/Machines.java
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public class Machines {
public static DrumMachine INVAR_DRUM = GTUtilityData.createDrum(Materials.Invar, 32000);
public static DrumMachine STAINLESS_DRUM = GTUtilityData.createDrum(Materials.StainlessSteel, 64000).acidProof();
public static DrumMachine TITANIUM_DRUM = GTUtilityData.createDrum(Materials.Titanium, 128000);
public static DrumMachine NETHERRITE_DRUM = GTUtilityData.createDrum(AntimatterMaterials.Netherite, 128000);
public static DrumMachine NETHERRITE_DRUM = GTUtilityData.createDrum(AntimatterMaterials.Netherite, 128000).acidProof();
public static DrumMachine TUNGSTENSTEEL_DRUM = GTUtilityData.createDrum(Materials.TungstenSteel, 256000);
public static DrumMachine TUNGSTEN_DRUM = GTUtilityData.createDrum(Materials.Tungsten, 256000);

Expand Down Expand Up @@ -217,7 +217,7 @@ private static MultiblockTankMachine[] createTankMachine(Material material, int
new MultiblockTankMachine(GTIRef.ID, material, true, 432 * multiplier * 1000),
new MultiblockTankMachine(GTIRef.ID, material, false, 2000 * multiplier * 1000)
};
if (material == StainlessSteel){
if (material == StainlessSteel || material == Netherite){
multiblockTankMachines[0].acidProof();
multiblockTankMachines[1].acidProof();
}
Expand Down

0 comments on commit 6beac33

Please sign in to comment.