Skip to content

Commit

Permalink
Added 1:4 Blaze Lamp recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
codewarrior0 committed Oct 4, 2017
1 parent a1c1d5d commit 91e85f2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Super simple addon for Botania and Gregtech 6. Adds in a few more tiers of orech
- Botania pebbles are now replaced by GregTech pebbles, which can be used to craft stone tools
- Clayconia Alluvia added to get early clay from gravel
- Added 1:1 Bonemeal recipe using Botania mortar
- 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)

*With big thanks to:*

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildscript {

apply plugin: 'forge'

version = "6.0.2"
version = "6.0.3"
group = "pharaun.Gregtania"
archivesBaseName = "Gregtania"

Expand Down
12 changes: 12 additions & 0 deletions src/main/java/com/gmail/pharaun/gregtania/proxies/CommonProxy.java
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,18 @@ public void init(FMLInitializationEvent event) {
new ItemStack(Items.bone, 1), "pestleAndMortar"
)
);

// Greg takes over the Blaze Lamp recipe, replacing it with Blaze Powder Block
// Add a cheaper Blaze Lamp recipe since the Iron for Iron Bars is harder to get

CraftingManager.getInstance().addShapelessRecipe(
new ItemStack(ModBlocks.blazeBlock),
new ItemStack(Items.blaze_powder, 1),
new ItemStack(Items.blaze_powder, 1),
new ItemStack(Items.blaze_powder, 1),
new ItemStack(Items.blaze_powder, 1)
);

}

public void postInit(FMLPostInitializationEvent event) {
Expand Down

0 comments on commit 91e85f2

Please sign in to comment.