Skip to content

Commit

Permalink
feat: replace pmma can with uhmwpe can
Browse files Browse the repository at this point in the history
  • Loading branch information
MCTian-mi committed Dec 9, 2024
1 parent e5e6c78 commit 21d337d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ public class SuSyMetaTileEntities {
public static MetaTileEntityDrum BRASS_DRUM;
public static MetaTileEntityPlasticCan PE_CAN;
public static MetaTileEntityPlasticCan PP_CAN;
public static MetaTileEntityPlasticCan PMMA_CAN;
public static MetaTileEntityPlasticCan PTFE_CAN;
public static MetaTileEntityPlasticCan UHMWPE_CAN;

//Machines for chem overhaul
public static ContinuousMachineMetaTileEntity[] CONTINUOUS_STIRRED_TANK_REACTOR;
Expand Down Expand Up @@ -181,12 +181,12 @@ public static void init() {

PE_CAN = registerMetaTileEntity(14507, new MetaTileEntityPlasticCan(susyId("drum.pe"), Materials.Polyethylene, 64_000));
PP_CAN = registerMetaTileEntity(14508, new MetaTileEntityPlasticCan(susyId("drum.pp"), new PropertyFluidFilter(444, true, true, false, false), 0xdfe39a, 128_000));
PMMA_CAN = registerMetaTileEntity(14509, new MetaTileEntityPlasticCan(susyId("drum.pmma"), new PropertyFluidFilter(438, true, true, false, false), 0x72e0c9, 256_000));
PTFE_CAN = registerMetaTileEntity(14509, new MetaTileEntityPlasticCan(susyId("drum.ptfe"), Materials.Polytetrafluoroethylene, 512_000));

STEAM_LATEX_COLLECTOR[0] = registerMetaTileEntity(14510, new MetaTileEntitySteamLatexCollector(susyId("latex_collector.bronze"), false));
STEAM_LATEX_COLLECTOR[1] = registerMetaTileEntity(14511, new MetaTileEntitySteamLatexCollector(susyId("latex_collector.steel"), true));

PTFE_CAN = registerMetaTileEntity(14512, new MetaTileEntityPlasticCan(susyId("drum.ptfe"), Materials.Polytetrafluoroethylene, 512_000)); // sadly I have to put it here
UHMWPE_CAN = registerMetaTileEntity(14512, new MetaTileEntityPlasticCan(susyId("drum.uhmwpe"), new PropertyFluidFilter(425, true, true, true, false), 0xc5e3de, 512_000)); // sadly I have to put it here

SINTERING_OVEN = registerMetaTileEntity(14521, new MetaTileEntitySinteringOven(susyId("sintering_oven")));

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/susy/lang/en_us.lang
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ gregtech.machine.drum.lead.name=Lead Drum
gregtech.machine.drum.brass.name=Brass Drum
gregtech.machine.drum.pe.name=Polyethylene (PE) Can
gregtech.machine.drum.pp.name=Polypropylene (PP) Can
gregtech.machine.drum.pmma.name=Polymethylmethacrylate (PMMA) Can
gregtech.machine.drum.ptfe.name=Polytetrafluoroethylene (PTFE) Can
gregtech.machine.drum.uhmwpe.name=Ultra High Molecular Weight Polyethylene (UHMWPE) Can

gregtech.machine.polymerization_tank.name=Polymerization Tank
gregtech.machine.fluidized_bed_reactor.name=Fluidized Bed Reactor
Expand Down

0 comments on commit 21d337d

Please sign in to comment.