mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-22 03:43:30 +01:00
oredict some stuff
This commit is contained in:
parent
019956144d
commit
3b5fd10f01
2 changed files with 17 additions and 0 deletions
|
@ -11,6 +11,7 @@ import de.ellpeck.naturesaura.compat.Compat;
|
|||
import de.ellpeck.naturesaura.events.CommonEvents;
|
||||
import de.ellpeck.naturesaura.events.TerrainGenEvents;
|
||||
import de.ellpeck.naturesaura.items.ModItems;
|
||||
import de.ellpeck.naturesaura.items.OreDict;
|
||||
import de.ellpeck.naturesaura.packet.PacketHandler;
|
||||
import de.ellpeck.naturesaura.proxy.IProxy;
|
||||
import de.ellpeck.naturesaura.recipes.ModRecipes;
|
||||
|
@ -75,6 +76,7 @@ public final class NaturesAura {
|
|||
public void init(FMLInitializationEvent event) {
|
||||
ModRecipes.init();
|
||||
ModRegistry.init(event);
|
||||
OreDict.init();
|
||||
|
||||
proxy.init(event);
|
||||
}
|
||||
|
|
15
src/main/java/de/ellpeck/naturesaura/items/OreDict.java
Normal file
15
src/main/java/de/ellpeck/naturesaura/items/OreDict.java
Normal file
|
@ -0,0 +1,15 @@
|
|||
package de.ellpeck.naturesaura.items;
|
||||
|
||||
import de.ellpeck.naturesaura.blocks.ModBlocks;
|
||||
import net.minecraftforge.oredict.OreDictionary;
|
||||
|
||||
public final class OreDict {
|
||||
|
||||
public static void init() {
|
||||
OreDictionary.registerOre("logWood", ModBlocks.ANCIENT_LOG);
|
||||
OreDictionary.registerOre("plankWood", ModBlocks.ANCIENT_PLANKS);
|
||||
OreDictionary.registerOre("stickWood", ModItems.ANCIENT_STICK);
|
||||
OreDictionary.registerOre("treeLeaves", ModBlocks.ANCIENT_LEAVES);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue