mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 04:49:10 +01:00
16 lines
498 B
Java
16 lines
498 B
Java
|
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);
|
||
|
}
|
||
|
|
||
|
}
|