Fixed not being able to smelt quartz into silicon, fixes #1365
This commit is contained in:
@@ -1,5 +1,8 @@
|
|||||||
# Refined Storage Changelog
|
# Refined Storage Changelog
|
||||||
|
|
||||||
|
### 1.5.11
|
||||||
|
- Fixed not being able to smelt quartz into silicon (raoulvdberge)
|
||||||
|
|
||||||
### 1.5.10
|
### 1.5.10
|
||||||
- Converted Solderer recipes to JSON (raoulvdberge)
|
- Converted Solderer recipes to JSON (raoulvdberge)
|
||||||
- Implemented controller update throttling, should fix lag issues with controllers that constantly turn off and on (raoulvdberge)
|
- Implemented controller update throttling, should fix lag issues with controllers that constantly turn off and on (raoulvdberge)
|
||||||
|
|||||||
@@ -32,8 +32,10 @@ import com.raoulvdberge.refinedstorage.tile.grid.portable.TilePortableGrid;
|
|||||||
import net.minecraft.block.Block;
|
import net.minecraft.block.Block;
|
||||||
import net.minecraft.enchantment.Enchantment;
|
import net.minecraft.enchantment.Enchantment;
|
||||||
import net.minecraft.enchantment.EnchantmentData;
|
import net.minecraft.enchantment.EnchantmentData;
|
||||||
|
import net.minecraft.init.Items;
|
||||||
import net.minecraft.item.Item;
|
import net.minecraft.item.Item;
|
||||||
import net.minecraft.item.ItemEnchantedBook;
|
import net.minecraft.item.ItemEnchantedBook;
|
||||||
|
import net.minecraft.item.ItemStack;
|
||||||
import net.minecraft.item.crafting.Ingredient;
|
import net.minecraft.item.crafting.Ingredient;
|
||||||
import net.minecraft.util.JsonUtils;
|
import net.minecraft.util.JsonUtils;
|
||||||
import net.minecraft.util.ResourceLocation;
|
import net.minecraft.util.ResourceLocation;
|
||||||
@@ -210,6 +212,8 @@ public class ProxyCommon {
|
|||||||
public void init(FMLInitializationEvent e) {
|
public void init(FMLInitializationEvent e) {
|
||||||
OreDictionary.registerOre("itemSilicon", RSItems.SILICON);
|
OreDictionary.registerOre("itemSilicon", RSItems.SILICON);
|
||||||
|
|
||||||
|
GameRegistry.addSmelting(Items.QUARTZ, new ItemStack(RSItems.SILICON), 0.5f);
|
||||||
|
|
||||||
CraftingHelper.register(new ResourceLocation(RS.ID + ":enchanted_book"), new IIngredientFactory() {
|
CraftingHelper.register(new ResourceLocation(RS.ID + ":enchanted_book"), new IIngredientFactory() {
|
||||||
@Nonnull
|
@Nonnull
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user