Skip to content

Commit

Permalink
Botania pebbles replaced by GT pebbles
Browse files Browse the repository at this point in the history
  • Loading branch information
codewarrior0 committed Oct 2, 2017
1 parent a174819 commit 6dd8033
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Super simple addon for Botania and Gregtech 6. Adds in a few more tiers of orech
- Sand and Gravel can be turned to ores by overworld Orechids
- Gravel can be turned to ores by Orechids Ignem.
- Ore weights are no longer hardcoded, but instead computed from the GregTech world gen parameters. Additional ores may still be added via the JSON weights config.

- Botania pebbles are now replaced by GregTech pebbles, which can be used to craft stone tools

*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.0"
version = "6.0.1"
group = "pharaun.Gregtania"
archivesBaseName = "Gregtania"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
import net.minecraft.init.Items;
import net.minecraft.item.ItemStack;
import net.minecraftforge.oredict.OreDictionary;
import vazkii.botania.common.block.ModBlocks;
import vazkii.botania.common.item.ModItems;
import vazkii.botania.common.item.block.ItemBlockSpecialFlower;

public class CommonProxy {
Expand Down Expand Up @@ -86,6 +88,12 @@ public void init(FMLInitializationEvent event) {

flower = ItemBlockSpecialFlower.ofType(SUBTILE_EVOLVED_ORECHID_ENDIUM + "III");
Util.registerFunctionalRunicRecipeElven(SUBTILE_EVOLVED_ORECHID_ENDIUM + "IV", costTier4, flower, flower, flower, flower);

// This looks like it allows Botania pebbles to be used as GT pebbles
// But it actually makes GT pebbles drop instead of Botania pebbles from right-clicking dirt

OreDictionary.registerOre("rockGtStone", new ItemStack(ModItems.manaResource, 1, 21));
OreDictionary.registerOre("rockGtAnyStone", new ItemStack(ModItems.manaResource, 1, 21));
}

public void postInit(FMLPostInitializationEvent event) {
Expand Down

0 comments on commit 6dd8033

Please sign in to comment.