Skip to content

Commit 6c1abe6

Browse files
Fix missing recipe for steam alloy smelter & furnace
1 parent 5129dab commit 6c1abe6

File tree

4 files changed

+2
-3
lines changed

4 files changed

+2
-3
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
- Fix hammer/spade/mining hammer recipes/recycling recipes not being removed
1616
- Remove flint and brick
1717
- Change recipe for seared melter and change quest to use seared heater
18+
- Fix missing recipe for steam alloy smelter & furnace
1819

1920
**Mod Changes**
2021
- modernfix-forge-5.20.0+mc1.20.1 -> modernfix-forge-5.20.2+mc1.20.1

kubejs/assets/emi/index/stacks/remove_workstations.json

-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
{
22
"removed":
33
[
4-
"item:minecraft:furnace",
54
"item:sophisticatedbackpacks:crafting_upgrade",
65
"item:sophisticatedstorage:crafting_upgrade"
76
],
87
"filters":
98
[
10-
"minecraft:furnace",
119
"sophisticatedstorage:crafting_upgrade"
1210
],
1311
"disable": true

kubejs/server_scripts/ItemRemoval.js

-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ ServerEvents.recipes(event => {
7575

7676
// Remove the recipes for removed items, and replace them in inputs as Removed Item Placeholders
7777
for (const item of global.ItemsToRemove) {
78-
console.log(item)
7978
event.remove([{output: item}, {input: item}])
8079
// Expand tags and RegExps into individual items to more easily identify what was removed
8180
global.Util.forEachItemExpanded(item, itemId => {

kubejs/server_scripts/TinkersConstruct.js

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ ServerEvents.recipes(event => {
88
event.remove({type: 'tconstruct:casting_table', id: /productivebees:tconstruct\/.*$/})
99
event.remove({id: 'tconstruct:smeltery/casting/obsidian/chest'})
1010
event.remove({id: 'tconstruct:smeltery/seared/melter'})
11+
event.remove({id: 'tconstruct:common/basalt_blast_furnace'})
1112

1213
event.campfireCooking('tconstruct:seared_brick', 'tconstruct:grout')
1314

0 commit comments

Comments
 (0)