mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-22 19:58:34 +01:00
un-oredict all ancient items because then mod compat isn't completely broken constantly
This commit is contained in:
parent
196101d8dd
commit
be448e26da
3 changed files with 1 additions and 19 deletions
|
@ -12,7 +12,6 @@ import de.ellpeck.naturesaura.compat.Compat;
|
||||||
import de.ellpeck.naturesaura.events.CommonEvents;
|
import de.ellpeck.naturesaura.events.CommonEvents;
|
||||||
import de.ellpeck.naturesaura.events.TerrainGenEvents;
|
import de.ellpeck.naturesaura.events.TerrainGenEvents;
|
||||||
import de.ellpeck.naturesaura.items.ModItems;
|
import de.ellpeck.naturesaura.items.ModItems;
|
||||||
import de.ellpeck.naturesaura.items.OreDict;
|
|
||||||
import de.ellpeck.naturesaura.packet.PacketHandler;
|
import de.ellpeck.naturesaura.packet.PacketHandler;
|
||||||
import de.ellpeck.naturesaura.proxy.IProxy;
|
import de.ellpeck.naturesaura.proxy.IProxy;
|
||||||
import de.ellpeck.naturesaura.recipes.ModRecipes;
|
import de.ellpeck.naturesaura.recipes.ModRecipes;
|
||||||
|
@ -78,7 +77,6 @@ public final class NaturesAura {
|
||||||
ModConfig.initOrReload();
|
ModConfig.initOrReload();
|
||||||
ModRecipes.init();
|
ModRecipes.init();
|
||||||
ModRegistry.init(event);
|
ModRegistry.init(event);
|
||||||
OreDict.init();
|
|
||||||
DrainSpotEffects.init();
|
DrainSpotEffects.init();
|
||||||
|
|
||||||
proxy.init(event);
|
proxy.init(event);
|
||||||
|
|
|
@ -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);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,7 +1,6 @@
|
||||||
{
|
{
|
||||||
"type": "forge:ore_shaped",
|
"type": "forge:ore_shaped",
|
||||||
"pattern": [
|
"pattern": [
|
||||||
"W",
|
|
||||||
"W",
|
"W",
|
||||||
"W"
|
"W"
|
||||||
],
|
],
|
||||||
|
@ -12,6 +11,6 @@
|
||||||
},
|
},
|
||||||
"result": {
|
"result": {
|
||||||
"item": "naturesaura:ancient_stick",
|
"item": "naturesaura:ancient_stick",
|
||||||
"count": 3
|
"count": 2
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue