diff options
| author | Jordan Byrne <draknyte1@hotmail.com> | 2018-03-03 17:11:22 +1000 |
|---|---|---|
| committer | Jordan Byrne <draknyte1@hotmail.com> | 2018-03-03 17:11:22 +1000 |
| commit | 94ccfe55a1b65f0c1173cb47fae1a68decb99354 (patch) | |
| tree | db72b6bef3756ca9d61d28b992f33641b8a83fd7 /src/Java/gtPlusPlus/core/item/base | |
| parent | 9b90ec63b0eb04c60dfa90791291b8a0174409d6 (diff) | |
| download | GT5-Unofficial-94ccfe55a1b65f0c1173cb47fae1a68decb99354.tar.gz GT5-Unofficial-94ccfe55a1b65f0c1173cb47fae1a68decb99354.tar.bz2 GT5-Unofficial-94ccfe55a1b65f0c1173cb47fae1a68decb99354.zip | |
+ Added Foil base item for future item generation.
+ Added U235 foil, if it is missing.
$ Fixed Mutagenic frame recipe not working, due to U235 Foil not existing in .09.
$ Fixed naming of Cryo/Pyrotheum fluid blocks.
% Tweaked Multi Machine Manual.
Diffstat (limited to 'src/Java/gtPlusPlus/core/item/base')
| -rw-r--r-- | src/Java/gtPlusPlus/core/item/base/BaseItemComponent.java | 1 | ||||
| -rw-r--r-- | src/Java/gtPlusPlus/core/item/base/foil/BaseItemFoil.java | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/item/base/BaseItemComponent.java b/src/Java/gtPlusPlus/core/item/base/BaseItemComponent.java index 57e5a999da..662f6433aa 100644 --- a/src/Java/gtPlusPlus/core/item/base/BaseItemComponent.java +++ b/src/Java/gtPlusPlus/core/item/base/BaseItemComponent.java @@ -227,6 +227,7 @@ public class BaseItemComponent extends Item{ BOLT("Bolt", " Bolt", "bolt"), ROTOR("Rotor", " Rotor", "rotor"), RING("Ring", " Ring", "ring"), + FOIL("Foil", " Foil", "foil"), PLASMACELL("CellPlasma", " Plasma Cell", "cellPlasma"), CELL("Cell", " Cell", "cell"), NUGGET("Nugget", " Nugget", "nugget"), diff --git a/src/Java/gtPlusPlus/core/item/base/foil/BaseItemFoil.java b/src/Java/gtPlusPlus/core/item/base/foil/BaseItemFoil.java new file mode 100644 index 0000000000..3e2816bf52 --- /dev/null +++ b/src/Java/gtPlusPlus/core/item/base/foil/BaseItemFoil.java @@ -0,0 +1,11 @@ +package gtPlusPlus.core.item.base.foil; + +import gtPlusPlus.core.item.base.BaseItemComponent; +import gtPlusPlus.core.material.Material; + +public class BaseItemFoil extends BaseItemComponent{ + + public BaseItemFoil(final Material material) { + super(material, BaseItemComponent.ComponentTypes.FOIL); + } +} |
