Recipe tweaks.

This commit is contained in:
raoulvdberge
2018-10-19 20:55:27 +02:00
parent 2761210711
commit fc138b22ee
5 changed files with 14 additions and 5 deletions

View File

@@ -1,5 +1,10 @@
# Refined Storage Changelog # Refined Storage Changelog
### 1.6.7
- Fixed the Raw Processor recipes not taking oredicted silicon (raoulvdberge)
- Fixed the Processor Binding recipe not taking oredicted slimeballs (raoulvdberge)
- The Processor Binding recipe now only gives 8 items instead of 16 (raoulvdberge)
### 1.6.6 ### 1.6.6
- Added new Crafter modes: ignore redstone signal, redstone signal unlocks autocrafting, redstone signal locks autocrafting and redstone pulse inserts next set (replacement for blocking mode) (raoulvdberge) - Added new Crafter modes: ignore redstone signal, redstone signal unlocks autocrafting, redstone signal locks autocrafting and redstone pulse inserts next set (replacement for blocking mode) (raoulvdberge)
- Added a config option to configure the autocrafting calculation timeout in milliseconds (raoulvdberge) - Added a config option to configure the autocrafting calculation timeout in milliseconds (raoulvdberge)

View File

@@ -10,11 +10,12 @@
"item": "minecraft:string" "item": "minecraft:string"
}, },
"L": { "L": {
"item": "minecraft:slime_ball" "type": "forge:ore_dict",
"ore": "slimeball"
} }
}, },
"result": { "result": {
"item": "refinedstorage:processor_binding", "item": "refinedstorage:processor_binding",
"count": 16 "count": 8
} }
} }

View File

@@ -8,7 +8,8 @@
"item": "minecraft:diamond" "item": "minecraft:diamond"
}, },
{ {
"item": "refinedstorage:silicon" "type": "forge:ore_dict",
"ore": "itemSilicon"
}, },
{ {
"item": "minecraft:redstone" "item": "minecraft:redstone"

View File

@@ -8,7 +8,8 @@
"item": "minecraft:iron_ingot" "item": "minecraft:iron_ingot"
}, },
{ {
"item": "refinedstorage:silicon" "type": "forge:ore_dict",
"ore": "itemSilicon"
}, },
{ {
"item": "minecraft:redstone" "item": "minecraft:redstone"

View File

@@ -8,7 +8,8 @@
"item": "minecraft:gold_ingot" "item": "minecraft:gold_ingot"
}, },
{ {
"item": "refinedstorage:silicon" "type": "forge:ore_dict",
"ore": "itemSilicon"
}, },
{ {
"item": "minecraft:redstone" "item": "minecraft:redstone"