diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-12-24 13:28:40 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-12-24 13:28:40 +1000 |
commit | 733e82642363da011097666f91048b4da3c051eb (patch) | |
tree | 172489cb7b13f692a097e71f94f15c97677af145 /src/Java/gtPlusPlus/core/item/ModItems.java | |
parent | 9517bb948d41dfe0fe7a7db7493d083c495076c1 (diff) | |
download | GT5-Unofficial-733e82642363da011097666f91048b4da3c051eb.tar.gz GT5-Unofficial-733e82642363da011097666f91048b4da3c051eb.tar.bz2 GT5-Unofficial-733e82642363da011097666f91048b4da3c051eb.zip |
$ Fixed an issue where recipeBuilder() could fail with a null.
+ Added a new constructor to material/MaterialGenerator.java which allows a true/false on what parts get generated. The old constructor was not removed, it just defaults to true for all parts to be generated.
- Removed Lithium-7 Rotors, Screws, Rods, Long Rods, Gears, Bolts & Rings as a result of the previous addition.
+ Added some missing textures.
Diffstat (limited to 'src/Java/gtPlusPlus/core/item/ModItems.java')
-rw-r--r-- | src/Java/gtPlusPlus/core/item/ModItems.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/item/ModItems.java b/src/Java/gtPlusPlus/core/item/ModItems.java index fd5f7896c2..0060841291 100644 --- a/src/Java/gtPlusPlus/core/item/ModItems.java +++ b/src/Java/gtPlusPlus/core/item/ModItems.java @@ -241,7 +241,7 @@ public final class ModItems { //The large neutron-absorption cross-section of lithium-6 (about 940 barns[5]) as compared with the very small //neutron cross-section of lithium-7 (about 45 millibarns) makes high separation of lithium-7 from natural lithium a //strong requirement for the possible use in lithium fluoride reactors. - MaterialGenerator.generate(ELEMENT.getInstance().LITHIUM7); + MaterialGenerator.generate(ELEMENT.getInstance().LITHIUM7, false); //Production of 233U (through the neutron irradiation of 232Th) invariably produces small amounts of 232U as an impurity //because of parasitic (n,2n) reactions on uranium-233 itself, or on protactinium-233, or on thorium-232: MaterialGenerator.generate(ELEMENT.getInstance().URANIUM232); |