Add oredict names
This commit is contained in:
@@ -3,6 +3,7 @@
|
|||||||
### 0.7.3
|
### 0.7.3
|
||||||
**Bugfixes**
|
**Bugfixes**
|
||||||
- Fixed grid performance by not sending grid data so often
|
- Fixed grid performance by not sending grid data so often
|
||||||
|
- Fixed silicon + quartz enriched iron not having oredict names
|
||||||
|
|
||||||
**Features**
|
**Features**
|
||||||
- Crafting tasks are now sorted from new to old in the Crafting Monitor
|
- Crafting tasks are now sorted from new to old in the Crafting Monitor
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
|
|||||||
import net.minecraftforge.fml.common.network.NetworkRegistry;
|
import net.minecraftforge.fml.common.network.NetworkRegistry;
|
||||||
import net.minecraftforge.fml.common.registry.GameRegistry;
|
import net.minecraftforge.fml.common.registry.GameRegistry;
|
||||||
import net.minecraftforge.fml.relauncher.Side;
|
import net.minecraftforge.fml.relauncher.Side;
|
||||||
|
import net.minecraftforge.oredict.OreDictionary;
|
||||||
import refinedstorage.RefinedStorage;
|
import refinedstorage.RefinedStorage;
|
||||||
import refinedstorage.RefinedStorageBlocks;
|
import refinedstorage.RefinedStorageBlocks;
|
||||||
import refinedstorage.RefinedStorageItems;
|
import refinedstorage.RefinedStorageItems;
|
||||||
@@ -111,6 +112,9 @@ public class CommonProxy {
|
|||||||
registerItem(RefinedStorageItems.SILICON);
|
registerItem(RefinedStorageItems.SILICON);
|
||||||
registerItem(RefinedStorageItems.UPGRADE);
|
registerItem(RefinedStorageItems.UPGRADE);
|
||||||
|
|
||||||
|
OreDictionary.registerOre("itemSilicon", RefinedStorageItems.SILICON);
|
||||||
|
OreDictionary.registerOre("ingotQuartzEnrichedIron", RefinedStorageItems.QUARTZ_ENRICHED_IRON);
|
||||||
|
|
||||||
// Processors
|
// Processors
|
||||||
SoldererRegistry.addRecipe(new SoldererRecipePrintedProcessor(ItemProcessor.TYPE_PRINTED_BASIC));
|
SoldererRegistry.addRecipe(new SoldererRecipePrintedProcessor(ItemProcessor.TYPE_PRINTED_BASIC));
|
||||||
SoldererRegistry.addRecipe(new SoldererRecipePrintedProcessor(ItemProcessor.TYPE_PRINTED_IMPROVED));
|
SoldererRegistry.addRecipe(new SoldererRecipePrintedProcessor(ItemProcessor.TYPE_PRINTED_IMPROVED));
|
||||||
|
|||||||
Reference in New Issue
Block a user