aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/registration
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2018-03-19 03:35:07 +1000
committerJordan Byrne <draknyte1@hotmail.com>2018-03-19 03:35:07 +1000
commitbc2481920018540c7672a1e004b3a912f1d3ceda (patch)
tree9af4680a73e65e971cb301bf79d733c0e4e37381 /src/Java/gtPlusPlus/xmod/gregtech/registration
parent92c98220c875e40badcc6c504b0c53c059aa5d54 (diff)
downloadGT5-Unofficial-bc2481920018540c7672a1e004b3a912f1d3ceda.tar.gz
GT5-Unofficial-bc2481920018540c7672a1e004b3a912f1d3ceda.tar.bz2
GT5-Unofficial-bc2481920018540c7672a1e004b3a912f1d3ceda.zip
+ Added some default aspects to all material & ore items.
$ Fixed Aspect additions not being added to items. $ More work on the Bedrock Miner.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechBedrockPlatforms.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechBedrockPlatforms.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechBedrockPlatforms.java
new file mode 100644
index 0000000000..c4f2a058f3
--- /dev/null
+++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechBedrockPlatforms.java
@@ -0,0 +1,16 @@
+package gtPlusPlus.xmod.gregtech.registration.gregtech;
+
+import gtPlusPlus.api.objects.Logger;
+import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList;
+import gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.bedrock.GregtechMetaTileEntity_BedrockMiningPlatform1;
+
+public class GregtechBedrockPlatforms {
+
+ //941-945
+
+ public static void run() {
+ Logger.INFO("Gregtech5u Content | Registering Bedrock Mining Platform.");
+ GregtechItemList.BedrockMiner_MKI.set(new GregtechMetaTileEntity_BedrockMiningPlatform1(941, "multimachine.tier.01.bedrockminer", "Experimental Deep Earth Drilling Platform - MK I").getStackForm(1));
+ }
+
+}