aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/registration
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2018-09-18 00:02:24 +1000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2018-09-18 00:02:24 +1000
commita177ece7d75a21ac682a9bb850a4205e7dbcbd34 (patch)
treeec4cbb314e2ea6d9ddf882e68edb06c9f4d98137 /src/Java/gtPlusPlus/xmod/gregtech/registration
parent42951c3b2217ba0cf349d42fab05c8227ad3e0ef (diff)
downloadGT5-Unofficial-a177ece7d75a21ac682a9bb850a4205e7dbcbd34.tar.gz
GT5-Unofficial-a177ece7d75a21ac682a9bb850a4205e7dbcbd34.tar.bz2
GT5-Unofficial-a177ece7d75a21ac682a9bb850a4205e7dbcbd34.zip
+ Added Solar Reflector.
% Made Solar Tower more complex structure wise. % Bumped Ticon ASM Handler.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSolarTower.java11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSolarTower.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSolarTower.java
index e9c5f3cfad..1ea1339755 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSolarTower.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSolarTower.java
@@ -3,6 +3,7 @@ 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.production.GregtechMetaTileEntity_SolarTower;
+import gtPlusPlus.xmod.gregtech.common.tileentities.misc.TileEntitySolarHeater;
public class GregtechSolarTower {
@@ -17,6 +18,14 @@ public class GregtechSolarTower {
private static void run1() {
// Solar Tower
GregtechItemList.Industrial_Solar_Tower.set(new GregtechMetaTileEntity_SolarTower(863, "solartower.controller.tier.single", "Solar Tower").getStackForm(1L));
-
+ GregtechItemList.Solar_Tower_Reflector.set(
+ new TileEntitySolarHeater(
+ 864,
+ "solarreflector.simple.single",
+ "Solar Reflector",
+ 8,
+ "Part of the Clean Green energy movement",
+ 0).getStackForm(1L));
+
}
} \ No newline at end of file