un-oredict all ancient items because then mod compat isn't completely broken constantly

This commit is contained in:
Ellpeck 2018-11-14 14:03:28 +01:00
parent 196101d8dd
commit be448e26da
3 changed files with 1 additions and 19 deletions

View file

@ -12,7 +12,6 @@ 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;
@ -78,7 +77,6 @@ public final class NaturesAura {
ModConfig.initOrReload();
ModRecipes.init();
ModRegistry.init(event);
OreDict.init();
DrainSpotEffects.init();
proxy.init(event);

View file

@ -1,15 +0,0 @@
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);
}
}

View file

@ -1,7 +1,6 @@
{
"type": "forge:ore_shaped",
"pattern": [
"W",
"W",
"W"
],
@ -12,6 +11,6 @@
},
"result": {
"item": "naturesaura:ancient_stick",
"count": 3
"count": 2
}
}