Skip to content

Commit fc28df9

Browse files
committed
a few last minute things before release
1 parent e8ab22a commit fc28df9

5 files changed

Lines changed: 74 additions & 45 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
This is the most recent Changelog. It also contains some of the changes inside the >>>UPCOMING<<< Versions (most of the time). This is for 1.7.10 btw.
22

33

4+
6.17.08: (Not released yet)
5+
Nothing (I tend to only add finished Stuff to the Changelog).
6+
7+
48
6.17.07: (Not released yet)
59
Nothing (I tend to only add finished Stuff to the Changelog).
610

711

8-
6.17.06: (to be released somewhen today if everything still works)
12+
6.17.06: very soon
913
[FIXED] Crucibles did not accept excessive amounts of Air while nearly full. We talking >1000KU worth of Air in ONE go, while only one Ingot worth of space is in the Crucible.
1014
[FIXED] GT6 Alexandrite Ore Veins will no longer generate when HBM NTM is installed (balance concerns), it also generally wont be on the "Small Gem Ores List" anymore. You can still use the Matter Replicator to make Alexandrite though, if you find a sample first.
1115
[CHANGED] GT6 Mossy Cobble (Not Vanilla Mossy Cobble) will make you (and Mobs) slide off if you are not sneaking. This Block spawns Mobs AND makes them slide off if there is space, which is Ideal for Mob Farms.

src/main/java/gregapi/tileentity/inventories/MultiTileEntityBookShelf.java

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ public void writeToNBT2(NBTTagCompound aNBT) {
9090
@Override
9191
public void addToolTips(List<String> aList, ItemStack aStack, boolean aF3_H) {
9292
aList.add(Chat.ORANGE + LH.get(LH.NO_GUI_CLICK_TO_INTERACT));
93+
aList.add(Chat.DGRAY + LH.get(LH.TOOL_TO_TAKE_PINCERS));
9394
aList.add(Chat.DGRAY + LH.get(LH.TOOL_TO_DETAIL_MAGNIFYINGGLASS));
9495
super.addToolTips(aList, aStack, aF3_H);
9596
}
@@ -176,14 +177,28 @@ public long onToolClick2(String aTool, long aRemainingDurability, long aQuality,
176177
float[] tCoords = UT.Code.getFacingCoordsClicked(aSide, aHitX, aHitY, aHitZ);
177178
if (tCoords[0] >= PX_P[1] && tCoords[0] <= PX_N[1] && tCoords[1] >= PX_P[1] && tCoords[1] <= PX_N[1]) {
178179
int tIndex = -1;
179-
if (aSide == mFacing ) tIndex = (tCoords[1] < PX_P[8]? 6:13)-(int)UT.Code.bind_(0, 6, (long)(8*(tCoords[0]-PX_P[1])));
180+
if (aSide == mFacing ) tIndex = (tCoords[1] < PX_P[8]? 6:13)-(int)UT.Code.bind_(0, 6, (long)(8*(tCoords[0]-PX_P[1])));
180181
if (aSide == OPOS[mFacing] ) tIndex = (tCoords[1] < PX_P[8]?20:27)-(int)UT.Code.bind_(0, 6, (long)(8*(tCoords[0]-PX_P[1])));
181182
if (tIndex >= 0 && slotHas(tIndex)) {
182183
NW_API.sendToPlayer(new PacketItemStackChat(slot(tIndex)), (EntityPlayerMP)aPlayer);
183184
return 1;
184185
}
185186
}
186187
}
188+
if (aTool.equals(TOOL_pincers)) {
189+
float[] tCoords = UT.Code.getFacingCoordsClicked(aSide, aHitX, aHitY, aHitZ);
190+
if (tCoords[0] >= PX_P[1] && tCoords[0] <= PX_N[1] && tCoords[1] >= PX_P[1] && tCoords[1] <= PX_N[1]) {
191+
int tIndex = -1;
192+
if (aSide == mFacing ) tIndex = (tCoords[1] < PX_P[8]? 6:13)-(int)UT.Code.bind_(0, 6, (long)(8*(tCoords[0]-PX_P[1])));
193+
if (aSide == OPOS[mFacing] ) tIndex = (tCoords[1] < PX_P[8]?20:27)-(int)UT.Code.bind_(0, 6, (long)(8*(tCoords[0]-PX_P[1])));
194+
if (tIndex >= 0 && slotHas(tIndex) && ST.add(aPlayer, slot(tIndex), T)) {
195+
slotKill(tIndex);
196+
updateInventory();
197+
playCollect();
198+
return 1;
199+
}
200+
}
201+
}
187202
return 0;
188203
}
189204

src/main/java/gregtech/loaders/c/Loader_Recipes_Alloys.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ public class Loader_Recipes_Alloys implements Runnable {
8686
mix("molten.brass" , 7, "molten.aluminium" , 1, "molten.cobalt" , 1 , "molten.cobaltbrass" , 9);
8787
mix("molten.brass" , 4, "molten.bismuth" , 1 , "molten.bismuthbronze" , 5);
8888
mix("molten.bronze" , 4, "molten.arsenic" , 1 , "molten.arsenicbronze" , 5);
89+
mix("molten.arseniccopper" , 4, "molten.tin" , 1 , "molten.arsenicbronze" , 5);
8990
mix("molten.cobalt" , 5, "molten.chromium" , 2, "molten.nickel" , 1, "molten.molybdenum" , 1, "molten.ultimet" , 9);
9091
mix("molten.cobalt" , 20, "molten.chromium" , 7, "molten.nichrome" , 5, "molten.molybdenum" , 4, "molten.ultimet" , 36);
9192
mix("molten.osmiumelemental", 1, "molten.iridium" , 1 , "molten.osmiridium" , 2);

src/main/java/gregtech/loaders/c/Loader_Recipes_Other.java

Lines changed: 51 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -50,49 +50,59 @@ public class Loader_Recipes_Other implements Runnable {
5050
RM.ic2_compressor(OM.dust(tWax, U4), foil .mat(tWax, 1));
5151
}
5252

53-
RM.Mixer.addRecipe2(T, 16, 64, dust .mat(MT.Cu , 3), dust .mat(MT.Sn, 1), IL.Compound_Bronze .get(36));
54-
RM.Mixer.addRecipe2(T, 16, 64, dust .mat(MT.Cu , 3), dust .mat(MT.Zn, 1), IL.Compound_Brass .get(36));
55-
RM.Mixer.addRecipe2(T, 16, 64, dust .mat(MT.Cu , 3), dust .mat(MT.As, 1), IL.Compound_ArsenicCopper.get(36));
56-
RM.Mixer.addRecipe2(T, 16, 80, dust .mat(MT.Bronze, 4), dust .mat(MT.As, 1), IL.Compound_ArsenicBronze.get(45));
57-
RM.Mixer.addRecipe2(T, 16, 80, IL.Compound_Bronze .get(36), dust .mat(MT.As, 1), IL.Compound_ArsenicBronze.get(45));
58-
RM.Mixer.addRecipe2(T, 16, 80, dust .mat(MT.Brass , 4), dust .mat(MT.Bi, 1), IL.Compound_BismuthBronze.get(45));
59-
RM.Mixer.addRecipe2(T, 16, 80, IL.Compound_Brass .get(36), dust .mat(MT.Bi, 1), IL.Compound_BismuthBronze.get(45));
60-
RM.Mixer.addRecipe2(T, 16, 16, dustSmall.mat(MT.Cu , 3), dustSmall.mat(MT.Sn, 1), IL.Compound_Bronze .get( 9));
61-
RM.Mixer.addRecipe2(T, 16, 16, dustSmall.mat(MT.Cu , 3), dustSmall.mat(MT.Zn, 1), IL.Compound_Brass .get( 9));
62-
RM.Mixer.addRecipe2(T, 16, 16, dustSmall.mat(MT.Cu , 3), dustSmall.mat(MT.As, 1), IL.Compound_ArsenicCopper.get( 9));
63-
RM.Mixer.addRecipe2(T, 16, 80, dustSmall.mat(MT.Bronze,16), dustSmall.mat(MT.As, 4), IL.Compound_ArsenicBronze.get(45));
64-
RM.Mixer.addRecipe2(T, 16, 80, IL.Compound_Bronze .get(36), dustSmall.mat(MT.As, 4), IL.Compound_ArsenicBronze.get(45));
65-
RM.Mixer.addRecipe2(T, 16, 80, dustSmall.mat(MT.Brass ,16), dustSmall.mat(MT.Bi, 4), IL.Compound_BismuthBronze.get(45));
66-
RM.Mixer.addRecipe2(T, 16, 80, IL.Compound_Brass .get(36), dustSmall.mat(MT.Bi, 4), IL.Compound_BismuthBronze.get(45));
53+
RM.Mixer.addRecipe2(T, 16, 64, dust .mat(MT.Cu , 3), dust .mat(MT.Sn, 1), IL.Compound_Bronze .get(36));
54+
RM.Mixer.addRecipe2(T, 16, 64, dust .mat(MT.Cu , 3), dust .mat(MT.Zn, 1), IL.Compound_Brass .get(36));
55+
RM.Mixer.addRecipe2(T, 16, 64, dust .mat(MT.Cu , 3), dust .mat(MT.As, 1), IL.Compound_ArsenicCopper.get(36));
56+
RM.Mixer.addRecipe2(T, 16, 80, dust .mat(MT.ArsenicCopper, 4), dust .mat(MT.Sn, 1), IL.Compound_ArsenicBronze.get(45));
57+
RM.Mixer.addRecipe2(T, 16, 80, IL.Compound_ArsenicCopper .get(36), dust .mat(MT.Sn, 1), IL.Compound_ArsenicBronze.get(45));
58+
RM.Mixer.addRecipe2(T, 16, 80, dust .mat(MT.Bronze , 4), dust .mat(MT.As, 1), IL.Compound_ArsenicBronze.get(45));
59+
RM.Mixer.addRecipe2(T, 16, 80, IL.Compound_Bronze .get(36), dust .mat(MT.As, 1), IL.Compound_ArsenicBronze.get(45));
60+
RM.Mixer.addRecipe2(T, 16, 80, dust .mat(MT.Brass , 4), dust .mat(MT.Bi, 1), IL.Compound_BismuthBronze.get(45));
61+
RM.Mixer.addRecipe2(T, 16, 80, IL.Compound_Brass .get(36), dust .mat(MT.Bi, 1), IL.Compound_BismuthBronze.get(45));
62+
RM.Mixer.addRecipe2(T, 16, 16, dustSmall.mat(MT.Cu , 3), dustSmall.mat(MT.Sn, 1), IL.Compound_Bronze .get( 9));
63+
RM.Mixer.addRecipe2(T, 16, 16, dustSmall.mat(MT.Cu , 3), dustSmall.mat(MT.Zn, 1), IL.Compound_Brass .get( 9));
64+
RM.Mixer.addRecipe2(T, 16, 16, dustSmall.mat(MT.Cu , 3), dustSmall.mat(MT.As, 1), IL.Compound_ArsenicCopper.get( 9));
65+
RM.Mixer.addRecipe2(T, 16, 80, dustSmall.mat(MT.ArsenicCopper,16), dustSmall.mat(MT.Sn, 4), IL.Compound_ArsenicBronze.get(45));
66+
RM.Mixer.addRecipe2(T, 16, 80, IL.Compound_ArsenicCopper .get(36), dustSmall.mat(MT.Sn, 4), IL.Compound_ArsenicBronze.get(45));
67+
RM.Mixer.addRecipe2(T, 16, 80, dustSmall.mat(MT.Bronze ,16), dustSmall.mat(MT.As, 4), IL.Compound_ArsenicBronze.get(45));
68+
RM.Mixer.addRecipe2(T, 16, 80, IL.Compound_Bronze .get(36), dustSmall.mat(MT.As, 4), IL.Compound_ArsenicBronze.get(45));
69+
RM.Mixer.addRecipe2(T, 16, 80, dustSmall.mat(MT.Brass ,16), dustSmall.mat(MT.Bi, 4), IL.Compound_BismuthBronze.get(45));
70+
RM.Mixer.addRecipe2(T, 16, 80, IL.Compound_Brass .get(36), dustSmall.mat(MT.Bi, 4), IL.Compound_BismuthBronze.get(45));
6771
for (OreDictPrefix tPrefixA : new OreDictPrefix[] {dustTiny, nugget, scrapGt}) {
68-
RM.Mixer.addRecipe2(T, 16, 64, tPrefixA .mat(MT.Cu ,27), dust .mat(MT.Sn, 1), IL.Compound_Bronze .get(36));
69-
RM.Mixer.addRecipe2(T, 16, 64, tPrefixA .mat(MT.Cu ,27), dust .mat(MT.Zn, 1), IL.Compound_Brass .get(36));
70-
RM.Mixer.addRecipe2(T, 16, 64, tPrefixA .mat(MT.Cu ,27), dust .mat(MT.As, 1), IL.Compound_ArsenicCopper.get(36));
71-
RM.Mixer.addRecipe2(T, 16, 80, tPrefixA .mat(MT.Bronze,36), dust .mat(MT.As, 1), IL.Compound_ArsenicBronze.get(45));
72-
RM.Mixer.addRecipe2(T, 16, 80, tPrefixA .mat(MT.Brass ,36), dust .mat(MT.Bi, 1), IL.Compound_BismuthBronze.get(45));
73-
RM.Mixer.addRecipe2(T, 16, 64, tPrefixA .mat(MT.Cu ,27), dustSmall.mat(MT.Sn, 4), IL.Compound_Bronze .get(36));
74-
RM.Mixer.addRecipe2(T, 16, 64, tPrefixA .mat(MT.Cu ,27), dustSmall.mat(MT.Zn, 4), IL.Compound_Brass .get(36));
75-
RM.Mixer.addRecipe2(T, 16, 64, tPrefixA .mat(MT.Cu ,27), dustSmall.mat(MT.As, 4), IL.Compound_ArsenicCopper.get(36));
76-
RM.Mixer.addRecipe2(T, 16, 80, tPrefixA .mat(MT.Bronze,36), dustSmall.mat(MT.As, 4), IL.Compound_ArsenicBronze.get(45));
77-
RM.Mixer.addRecipe2(T, 16, 80, tPrefixA .mat(MT.Brass ,36), dustSmall.mat(MT.Bi, 4), IL.Compound_BismuthBronze.get(45));
78-
RM.Mixer.addRecipe2(T, 16, 22, dust .mat(MT.Cu , 1), tPrefixA .mat(MT.Sn, 3), IL.Compound_Bronze .get(12));
79-
RM.Mixer.addRecipe2(T, 16, 22, dust .mat(MT.Cu , 1), tPrefixA .mat(MT.Zn, 3), IL.Compound_Brass .get(12));
80-
RM.Mixer.addRecipe2(T, 16, 22, dust .mat(MT.Cu , 1), tPrefixA .mat(MT.As, 3), IL.Compound_ArsenicCopper.get(12));
81-
RM.Mixer.addRecipe2(T, 16, 80, dust .mat(MT.Bronze, 4), tPrefixA .mat(MT.As, 9), IL.Compound_ArsenicBronze.get(45));
82-
RM.Mixer.addRecipe2(T, 16, 80, dust .mat(MT.Brass , 4), tPrefixA .mat(MT.Bi, 9), IL.Compound_BismuthBronze.get(45));
83-
RM.Mixer.addRecipe2(T, 16, 22, dustSmall.mat(MT.Cu , 4), tPrefixA .mat(MT.Sn, 3), IL.Compound_Bronze .get(12));
84-
RM.Mixer.addRecipe2(T, 16, 22, dustSmall.mat(MT.Cu , 4), tPrefixA .mat(MT.Zn, 3), IL.Compound_Brass .get(12));
85-
RM.Mixer.addRecipe2(T, 16, 22, dustSmall.mat(MT.Cu , 4), tPrefixA .mat(MT.As, 3), IL.Compound_ArsenicCopper.get(12));
86-
RM.Mixer.addRecipe2(T, 16, 80, dustSmall.mat(MT.Bronze,16), tPrefixA .mat(MT.As, 9), IL.Compound_ArsenicBronze.get(45));
87-
RM.Mixer.addRecipe2(T, 16, 10, IL.Compound_Bronze .get( 4), tPrefixA .mat(MT.As, 1), IL.Compound_ArsenicBronze.get( 5));
88-
RM.Mixer.addRecipe2(T, 16, 80, dustSmall.mat(MT.Brass ,16), tPrefixA .mat(MT.Bi, 9), IL.Compound_BismuthBronze.get(45));
89-
RM.Mixer.addRecipe2(T, 16, 10, IL.Compound_Brass .get( 4), tPrefixA .mat(MT.Bi, 1), IL.Compound_BismuthBronze.get( 5));
72+
RM.Mixer.addRecipe2(T, 16, 64, tPrefixA .mat(MT.Cu ,27), dust .mat(MT.Sn, 1), IL.Compound_Bronze .get(36));
73+
RM.Mixer.addRecipe2(T, 16, 64, tPrefixA .mat(MT.Cu ,27), dust .mat(MT.Zn, 1), IL.Compound_Brass .get(36));
74+
RM.Mixer.addRecipe2(T, 16, 64, tPrefixA .mat(MT.Cu ,27), dust .mat(MT.As, 1), IL.Compound_ArsenicCopper.get(36));
75+
RM.Mixer.addRecipe2(T, 16, 80, tPrefixA .mat(MT.ArsenicCopper,36), dust .mat(MT.Sn, 1), IL.Compound_ArsenicBronze.get(45));
76+
RM.Mixer.addRecipe2(T, 16, 80, tPrefixA .mat(MT.Bronze ,36), dust .mat(MT.As, 1), IL.Compound_ArsenicBronze.get(45));
77+
RM.Mixer.addRecipe2(T, 16, 80, tPrefixA .mat(MT.Brass ,36), dust .mat(MT.Bi, 1), IL.Compound_BismuthBronze.get(45));
78+
RM.Mixer.addRecipe2(T, 16, 64, tPrefixA .mat(MT.Cu ,27), dustSmall.mat(MT.Sn, 4), IL.Compound_Bronze .get(36));
79+
RM.Mixer.addRecipe2(T, 16, 64, tPrefixA .mat(MT.Cu ,27), dustSmall.mat(MT.Zn, 4), IL.Compound_Brass .get(36));
80+
RM.Mixer.addRecipe2(T, 16, 64, tPrefixA .mat(MT.Cu ,27), dustSmall.mat(MT.As, 4), IL.Compound_ArsenicCopper.get(36));
81+
RM.Mixer.addRecipe2(T, 16, 80, tPrefixA .mat(MT.ArsenicCopper,36), dustSmall.mat(MT.Sn, 4), IL.Compound_ArsenicBronze.get(45));
82+
RM.Mixer.addRecipe2(T, 16, 80, tPrefixA .mat(MT.Bronze ,36), dustSmall.mat(MT.As, 4), IL.Compound_ArsenicBronze.get(45));
83+
RM.Mixer.addRecipe2(T, 16, 80, tPrefixA .mat(MT.Brass ,36), dustSmall.mat(MT.Bi, 4), IL.Compound_BismuthBronze.get(45));
84+
RM.Mixer.addRecipe2(T, 16, 22, dust .mat(MT.Cu , 1), tPrefixA .mat(MT.Sn, 3), IL.Compound_Bronze .get(12));
85+
RM.Mixer.addRecipe2(T, 16, 22, dust .mat(MT.Cu , 1), tPrefixA .mat(MT.Zn, 3), IL.Compound_Brass .get(12));
86+
RM.Mixer.addRecipe2(T, 16, 22, dust .mat(MT.Cu , 1), tPrefixA .mat(MT.As, 3), IL.Compound_ArsenicCopper.get(12));
87+
RM.Mixer.addRecipe2(T, 16, 80, dust .mat(MT.ArsenicCopper, 4), tPrefixA .mat(MT.Sn, 9), IL.Compound_ArsenicBronze.get(45));
88+
RM.Mixer.addRecipe2(T, 16, 80, dust .mat(MT.Bronze , 4), tPrefixA .mat(MT.As, 9), IL.Compound_ArsenicBronze.get(45));
89+
RM.Mixer.addRecipe2(T, 16, 80, dust .mat(MT.Brass , 4), tPrefixA .mat(MT.Bi, 9), IL.Compound_BismuthBronze.get(45));
90+
RM.Mixer.addRecipe2(T, 16, 22, dustSmall.mat(MT.Cu , 4), tPrefixA .mat(MT.Sn, 3), IL.Compound_Bronze .get(12));
91+
RM.Mixer.addRecipe2(T, 16, 22, dustSmall.mat(MT.Cu , 4), tPrefixA .mat(MT.Zn, 3), IL.Compound_Brass .get(12));
92+
RM.Mixer.addRecipe2(T, 16, 22, dustSmall.mat(MT.Cu , 4), tPrefixA .mat(MT.As, 3), IL.Compound_ArsenicCopper.get(12));
93+
RM.Mixer.addRecipe2(T, 16, 80, dustSmall.mat(MT.ArsenicCopper,16), tPrefixA .mat(MT.Sn, 9), IL.Compound_ArsenicBronze.get(45));
94+
RM.Mixer.addRecipe2(T, 16, 80, dustSmall.mat(MT.Bronze ,16), tPrefixA .mat(MT.As, 9), IL.Compound_ArsenicBronze.get(45));
95+
RM.Mixer.addRecipe2(T, 16, 80, dustSmall.mat(MT.Brass ,16), tPrefixA .mat(MT.Bi, 9), IL.Compound_BismuthBronze.get(45));
96+
RM.Mixer.addRecipe2(T, 16, 10, IL.Compound_ArsenicCopper .get( 4), tPrefixA .mat(MT.Sn, 1), IL.Compound_ArsenicBronze.get( 5));
97+
RM.Mixer.addRecipe2(T, 16, 10, IL.Compound_Bronze .get( 4), tPrefixA .mat(MT.As, 1), IL.Compound_ArsenicBronze.get( 5));
98+
RM.Mixer.addRecipe2(T, 16, 10, IL.Compound_Brass .get( 4), tPrefixA .mat(MT.Bi, 1), IL.Compound_BismuthBronze.get( 5));
9099
for (OreDictPrefix tPrefixB : new OreDictPrefix[] {dustTiny, nugget, scrapGt}) {
91-
RM.Mixer.addRecipe2(T, 16, 8, tPrefixA .mat(MT.Cu , 3), tPrefixB .mat(MT.Sn, 1), IL.Compound_Bronze .get( 4));
92-
RM.Mixer.addRecipe2(T, 16, 8, tPrefixA .mat(MT.Cu , 3), tPrefixB .mat(MT.Zn, 1), IL.Compound_Brass .get( 4));
93-
RM.Mixer.addRecipe2(T, 16, 8, tPrefixA .mat(MT.Cu , 3), tPrefixB .mat(MT.As, 1), IL.Compound_ArsenicCopper.get( 4));
94-
RM.Mixer.addRecipe2(T, 16, 10, tPrefixA .mat(MT.Bronze, 4), tPrefixB .mat(MT.As, 1), IL.Compound_ArsenicBronze.get( 5));
95-
RM.Mixer.addRecipe2(T, 16, 10, tPrefixA .mat(MT.Brass , 4), tPrefixB .mat(MT.Bi, 1), IL.Compound_BismuthBronze.get( 5));
100+
RM.Mixer.addRecipe2(T, 16, 8, tPrefixA .mat(MT.Cu , 3), tPrefixB .mat(MT.Sn, 1), IL.Compound_Bronze .get( 4));
101+
RM.Mixer.addRecipe2(T, 16, 8, tPrefixA .mat(MT.Cu , 3), tPrefixB .mat(MT.Zn, 1), IL.Compound_Brass .get( 4));
102+
RM.Mixer.addRecipe2(T, 16, 8, tPrefixA .mat(MT.Cu , 3), tPrefixB .mat(MT.As, 1), IL.Compound_ArsenicCopper.get( 4));
103+
RM.Mixer.addRecipe2(T, 16, 10, tPrefixA .mat(MT.ArsenicCopper, 4), tPrefixB .mat(MT.Sn, 1), IL.Compound_ArsenicBronze.get( 5));
104+
RM.Mixer.addRecipe2(T, 16, 10, tPrefixA .mat(MT.Bronze , 4), tPrefixB .mat(MT.As, 1), IL.Compound_ArsenicBronze.get( 5));
105+
RM.Mixer.addRecipe2(T, 16, 10, tPrefixA .mat(MT.Brass , 4), tPrefixB .mat(MT.Bi, 1), IL.Compound_BismuthBronze.get( 5));
96106
}
97107
}
98108

src/main/java/gregtech/tileentity/multiblocks/MultiTileEntityVonDaGraagg.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ public void addToolTips(List<String> aList, ItemStack aStack, boolean aF3_H) {
112112

113113
@Override
114114
public boolean isInsideStructure(int aX, int aY, int aZ) {
115-
// TODO actual dimensions of Structure
116115
int tX = xCoord, tY = yCoord, tZ = zCoord;
117116
return aX >= tX - 2 && aY >= tY && aZ >= tZ - 2 && aX <= tX + 2 && aY <= tY + 8 && aZ <= tZ + 2;
118117
}
@@ -158,7 +157,7 @@ public void onMagnifyingGlass2(List<String> aChatReturn) {
158157
}
159158

160159
@Override public byte getDefaultSide() {return SIDE_FRONT;}
161-
@Override public boolean[] getValidSides() {return SIDES_HORIZONTAL;}
160+
@Override public boolean[] getValidSides() {return SIDES_BOTTOM;}
162161

163162
@Override public long getGibblValue (byte aSide) {return 1000*mCurrentRange;}
164163
@Override public long getGibblMax (byte aSide) {return 1000*256;}

0 commit comments

Comments
 (0)