Skip to content

Commit 91e85f2

Browse files
committed
Added 1:4 Blaze Lamp recipe
1 parent a1c1d5d commit 91e85f2

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Super simple addon for Botania and Gregtech 6. Adds in a few more tiers of orech
1111
- Botania pebbles are now replaced by GregTech pebbles, which can be used to craft stone tools
1212
- Clayconia Alluvia added to get early clay from gravel
1313
- 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)
1415

1516
*With big thanks to:*
1617

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ buildscript {
1717

1818
apply plugin: 'forge'
1919

20-
version = "6.0.2"
20+
version = "6.0.3"
2121
group = "pharaun.Gregtania"
2222
archivesBaseName = "Gregtania"
2323

src/main/java/com/gmail/pharaun/gregtania/proxies/CommonProxy.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,18 @@ public void init(FMLInitializationEvent event) {
121121
new ItemStack(Items.bone, 1), "pestleAndMortar"
122122
)
123123
);
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+
124136
}
125137

126138
public void postInit(FMLPostInitializationEvent event) {

0 commit comments

Comments
 (0)