diff options
| author | Draknyte1 <Draknyte1@hotmail.com> | 2017-01-05 16:45:55 +1000 |
|---|---|---|
| committer | Draknyte1 <Draknyte1@hotmail.com> | 2017-01-05 16:45:55 +1000 |
| commit | d5f700a2279ee19386609663c40471daf69d5fbb (patch) | |
| tree | cffad2d2cfe557f3a3cea0830ac3b6b2665b58f9 /src/Java/gtPlusPlus/xmod/gregtech/registration | |
| parent | e21a733f3a4ab0eba98830d4244dd7ac7b138ff9 (diff) | |
| download | GT5-Unofficial-d5f700a2279ee19386609663c40471daf69d5fbb.tar.gz GT5-Unofficial-d5f700a2279ee19386609663c40471daf69d5fbb.tar.bz2 GT5-Unofficial-d5f700a2279ee19386609663c40471daf69d5fbb.zip | |
+ Added a casing for the perimeter of the Tree Farmer structure.
$ Improved the structure formation of the Tree Farmer, it now works better when built.
+ Added a new texture for the Farm manager blocks, which surround the Tree Farming structure.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration')
| -rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechTreeFarmerTE.java | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechTreeFarmerTE.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechTreeFarmerTE.java new file mode 100644 index 0000000000..87e8a6bb55 --- /dev/null +++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechTreeFarmerTE.java @@ -0,0 +1,30 @@ +package gtPlusPlus.xmod.gregtech.registration.gregtech; + +import gtPlusPlus.core.lib.CORE; +import gtPlusPlus.core.util.Utils; +import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList; +import gtPlusPlus.xmod.gregtech.api.metatileentity.implementations.GregtechMetaTreeFarmerStructural; + +public class GregtechTreeFarmerTE +{ + public static void run() + { + if (gtPlusPlus.core.lib.LoadedMods.Gregtech){ + Utils.LOG_INFO("Gregtech5u Content | Registering Tree Farmer Structural Block."); + if (CORE.configSwitches.enableMachine_Safes) run1(); + } + + } + + private static void run1() + { + + GregtechItemList.TreeFarmer_Structural.set(new GregtechMetaTreeFarmerStructural(752, "treefarmer.structural", "Farm Keeper", 0).getStackForm(1L)); + + + + + + + } +} |
