diff options
author | D-Cysteine <54219287+D-Cysteine@users.noreply.github.com> | 2021-07-26 00:58:08 -0600 |
---|---|---|
committer | D-Cysteine <54219287+D-Cysteine@users.noreply.github.com> | 2021-07-26 00:58:08 -0600 |
commit | dfabedc7c7b5c33369402c7fccc6536a470e98f0 (patch) | |
tree | 78d0af693026f057f692198eab008a7e001a5d3a /src/main/java/gregtech/loaders/materialprocessing | |
parent | f748b5d27785c4a5fcfd97928c467242f0e9f6f1 (diff) | |
download | GT5-Unofficial-dfabedc7c7b5c33369402c7fccc6536a470e98f0.tar.gz GT5-Unofficial-dfabedc7c7b5c33369402c7fccc6536a470e98f0.tar.bz2 GT5-Unofficial-dfabedc7c7b5c33369402c7fccc6536a470e98f0.zip |
Comment out example code adding invalid ores
Diffstat (limited to 'src/main/java/gregtech/loaders/materialprocessing')
-rw-r--r-- | src/main/java/gregtech/loaders/materialprocessing/ProcessingConfig.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main/java/gregtech/loaders/materialprocessing/ProcessingConfig.java b/src/main/java/gregtech/loaders/materialprocessing/ProcessingConfig.java index 512a01f1ff..29d4fe376c 100644 --- a/src/main/java/gregtech/loaders/materialprocessing/ProcessingConfig.java +++ b/src/main/java/gregtech/loaders/materialprocessing/ProcessingConfig.java @@ -15,11 +15,15 @@ public class ProcessingConfig implements gregtech.api.interfaces.IMaterialHandle @Override public void onMaterialsInit() { /** This is just left here as an example of how to add new materials. **/ + // If you uncomment this, these custom ores will get added to the Deep Dark void miner ore list and cause bugged ores to be generated! + // See: com.dreammaster.bartworksHandler.VoidMinerLoader + /* int i = 0; for (int j = GregTech_API.sMaterialProperties.get("general", "AmountOfCustomMaterialSlots", 16); i < j; i++) { String aID = (i < 10 ? "0" : "") + i; new Materials(-1, TextureSet.SET_METALLIC, 1.0F, 0, 0, 0, 255, 255, 255, 0, "CustomMat" + aID, "CustomMat" + aID, 0, 0, 0, 0, false, false, 1, 1, 1, Dyes._NULL, "custom", true, aID); } + */ } @Override |