File tree 3 files changed +14
-1
lines changed
src/main/java/com/gmail/pharaun/gregtania/proxies 3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Super simple addon for Botania and Gregtech 6. Adds in a few more tiers of orech
11
11
- Botania pebbles are now replaced by GregTech pebbles, which can be used to craft stone tools
12
12
- Clayconia Alluvia added to get early clay from gravel
13
13
- Added 1:1 Bonemeal recipe using Botania mortar
14
+ - Added 1:4 Blaze Lamp recipe (since Greg replaces the 1:9 with his own Blaze Powder block, and iron is a bit more scarce)
14
15
15
16
* With big thanks to:*
16
17
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ buildscript {
17
17
18
18
apply plugin : ' forge'
19
19
20
- version = " 6.0.2 "
20
+ version = " 6.0.3 "
21
21
group = " pharaun.Gregtania"
22
22
archivesBaseName = " Gregtania"
23
23
Original file line number Diff line number Diff line change @@ -121,6 +121,18 @@ public void init(FMLInitializationEvent event) {
121
121
new ItemStack (Items .bone , 1 ), "pestleAndMortar"
122
122
)
123
123
);
124
+
125
+ // Greg takes over the Blaze Lamp recipe, replacing it with Blaze Powder Block
126
+ // Add a cheaper Blaze Lamp recipe since the Iron for Iron Bars is harder to get
127
+
128
+ CraftingManager .getInstance ().addShapelessRecipe (
129
+ new ItemStack (ModBlocks .blazeBlock ),
130
+ new ItemStack (Items .blaze_powder , 1 ),
131
+ new ItemStack (Items .blaze_powder , 1 ),
132
+ new ItemStack (Items .blaze_powder , 1 ),
133
+ new ItemStack (Items .blaze_powder , 1 )
134
+ );
135
+
124
136
}
125
137
126
138
public void postInit (FMLPostInitializationEvent event ) {
You can’t perform that action at this time.
0 commit comments