Fixed Refined Storage silicon's oredict entry being registered too late. Fixes #1814
This commit is contained in:
@@ -1,5 +1,8 @@
|
|||||||
# Refined Storage Changelog
|
# Refined Storage Changelog
|
||||||
|
|
||||||
|
### 1.6.5
|
||||||
|
- Fixed Refined Storage silicon's oredict entry being registered too late (raoulvdberge)
|
||||||
|
|
||||||
### 1.6.4
|
### 1.6.4
|
||||||
- Rewrote autocrafting again, bringing performance up to par with other autocrafting mods (raoulvdberge)
|
- Rewrote autocrafting again, bringing performance up to par with other autocrafting mods (raoulvdberge)
|
||||||
- Autocrafting now reserves items and fluids in an internal inventory to avoid having the storage network steal stacks required for autocrafting (raoulvdberge)
|
- Autocrafting now reserves items and fluids in an internal inventory to avoid having the storage network steal stacks required for autocrafting (raoulvdberge)
|
||||||
|
|||||||
@@ -245,8 +245,6 @@ public class ProxyCommon {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void init(FMLInitializationEvent e) {
|
public void init(FMLInitializationEvent e) {
|
||||||
OreDictionary.registerOre("itemSilicon", RSItems.SILICON);
|
|
||||||
|
|
||||||
GameRegistry.addSmelting(Items.QUARTZ, new ItemStack(RSItems.SILICON), 0.5F);
|
GameRegistry.addSmelting(Items.QUARTZ, new ItemStack(RSItems.SILICON), 0.5F);
|
||||||
|
|
||||||
GameRegistry.addSmelting(new ItemStack(RSItems.PROCESSOR, 1, ItemProcessor.TYPE_CUT_BASIC), new ItemStack(RSItems.PROCESSOR, 1, ItemProcessor.TYPE_BASIC), 0.5F);
|
GameRegistry.addSmelting(new ItemStack(RSItems.PROCESSOR, 1, ItemProcessor.TYPE_CUT_BASIC), new ItemStack(RSItems.PROCESSOR, 1, ItemProcessor.TYPE_BASIC), 0.5F);
|
||||||
@@ -282,6 +280,8 @@ public class ProxyCommon {
|
|||||||
@SubscribeEvent
|
@SubscribeEvent
|
||||||
public void registerItems(RegistryEvent.Register<Item> e) {
|
public void registerItems(RegistryEvent.Register<Item> e) {
|
||||||
itemsToRegister.forEach(e.getRegistry()::register);
|
itemsToRegister.forEach(e.getRegistry()::register);
|
||||||
|
|
||||||
|
OreDictionary.registerOre("itemSilicon", RSItems.SILICON);
|
||||||
}
|
}
|
||||||
|
|
||||||
@SubscribeEvent
|
@SubscribeEvent
|
||||||
|
|||||||
Reference in New Issue
Block a user