parent
fa9b9687ab
commit
ffcc45475e
4 changed files with 17 additions and 3 deletions
|
|
@ -9,6 +9,8 @@
|
||||||
- Moon rabbits can eat chorus fruit now @Pyritie
|
- Moon rabbits can eat chorus fruit now @Pyritie
|
||||||
- Added electric greenhouse recipes for mushrooms and bamboo (#1610) @Pyritie
|
- Added electric greenhouse recipes for mushrooms and bamboo (#1610) @Pyritie
|
||||||
- Increased amount of saplings that the electric greenhouse returns to be more in line with create-based tree farms @Pyritie
|
- Increased amount of saplings that the electric greenhouse returns to be more in line with create-based tree farms @Pyritie
|
||||||
|
- Firmalife mixing bowls can now be placed on tool racks (#1623) @Pyritie
|
||||||
|
- Fixed recipe for pyroxenite button (again) (#1625) @Pyritie
|
||||||
### Bug fixes
|
### Bug fixes
|
||||||
- Fixed moon mob spawning light levels, so now they need a light level of 0 instead of 11 (#1587) @NINAustinFett
|
- Fixed moon mob spawning light levels, so now they need a light level of 0 instead of 11 (#1587) @NINAustinFett
|
||||||
- Fixed wrong output amount of mortaring soybean paste (#1607) @TomPlop
|
- Fixed wrong output amount of mortaring soybean paste (#1607) @TomPlop
|
||||||
|
|
|
||||||
|
|
@ -1378,12 +1378,19 @@ const registerGTCEURecipes = (event) => {
|
||||||
.EUt(GTValues.VA[GTValues.LV])
|
.EUt(GTValues.VA[GTValues.LV])
|
||||||
|
|
||||||
// Buttons
|
// Buttons
|
||||||
event.replaceOutput({ id: 'gtceu:cutter/blackstone_button' }, 'minecraft:polished_blackstone_button', '6x minecraft:polished_blackstone_button')
|
|
||||||
event.replaceOutput({ id: 'gtceu:cutter/blackstone_button_water' }, 'minecraft:polished_blackstone_button', '6x minecraft:polished_blackstone_button')
|
|
||||||
event.replaceOutput({ id: 'gtceu:cutter/blackstone_button_distilled_water' }, 'minecraft:polished_blackstone_button', '6x minecraft:polished_blackstone_button')
|
|
||||||
removeCutterRecipe(event, 'blackstone_button')
|
removeCutterRecipe(event, 'blackstone_button')
|
||||||
removeCutterRecipe(event, 'blackstone_button_water')
|
removeCutterRecipe(event, 'blackstone_button_water')
|
||||||
removeCutterRecipe(event, 'blackstone_button_distilled_water')
|
removeCutterRecipe(event, 'blackstone_button_distilled_water')
|
||||||
|
removeCutterRecipe(event, 'cut_polished_blackstone_brickslab_into_button')
|
||||||
|
removeCutterRecipe(event, 'cut_polished_blackstone_brickslab_into_button_water')
|
||||||
|
removeCutterRecipe(event, 'cut_polished_blackstone_brickslab_into_button_distilled_water')
|
||||||
|
|
||||||
|
event.recipes.gtceu.cutter('tfg:blackstone_button')
|
||||||
|
.itemInputs('minecraft:polished_blackstone_pressure_plate')
|
||||||
|
.itemOutputs('6x minecraft:polished_blackstone_button')
|
||||||
|
.EUt(7)
|
||||||
|
.duration(100)
|
||||||
|
|
||||||
|
|
||||||
event.replaceOutput({ id: 'gtceu:cutter/bamboo_button' }, 'minecraft:bamboo_button', '6x minecraft:bamboo_button')
|
event.replaceOutput({ id: 'gtceu:cutter/bamboo_button' }, 'minecraft:bamboo_button', '6x minecraft:bamboo_button')
|
||||||
event.replaceOutput({ id: 'gtceu:cutter/bamboo_button_water' }, 'minecraft:bamboo_button', '6x minecraft:bamboo_button')
|
event.replaceOutput({ id: 'gtceu:cutter/bamboo_button_water' }, 'minecraft:bamboo_button', '6x minecraft:bamboo_button')
|
||||||
|
|
|
||||||
|
|
@ -59,6 +59,7 @@ const registerTFCItemTags = (event) => {
|
||||||
event.add('tfc:usable_on_tool_rack', 'waterflasks:iron_flask')
|
event.add('tfc:usable_on_tool_rack', 'waterflasks:iron_flask')
|
||||||
event.add('tfc:usable_on_tool_rack', 'waterflasks:red_steel_flask')
|
event.add('tfc:usable_on_tool_rack', 'waterflasks:red_steel_flask')
|
||||||
event.add('tfc:usable_on_tool_rack', 'tfc:wool_cloth')
|
event.add('tfc:usable_on_tool_rack', 'tfc:wool_cloth')
|
||||||
|
event.add('tfc:usable_on_tool_rack', 'firmalife:mixing_bowl')
|
||||||
|
|
||||||
// Ингредиенты для закваски
|
// Ингредиенты для закваски
|
||||||
event.add('tfg:ferments_to_rennet', 'tfc:food/soybean')
|
event.add('tfg:ferments_to_rennet', 'tfc:food/soybean')
|
||||||
|
|
|
||||||
|
|
@ -296,6 +296,10 @@ const registerTFGItemTags = (event) => {
|
||||||
event.add('tfc:grass', 'tfg:grass/rusticus_mycelium')
|
event.add('tfc:grass', 'tfg:grass/rusticus_mycelium')
|
||||||
event.add('tfc:grass', 'tfg:grass/sangnum_mycelium')
|
event.add('tfc:grass', 'tfg:grass/sangnum_mycelium')
|
||||||
event.add('tfc:farmland', 'tfg:grass/mars_farmland')
|
event.add('tfc:farmland', 'tfg:grass/mars_farmland')
|
||||||
|
event.add('minecraft:mineable/shovel', 'tfg:grass/mars_dirt')
|
||||||
|
event.add('minecraft:mineable/shovel', 'tfg:grass/amber_mycelium')
|
||||||
|
event.add('minecraft:mineable/shovel', 'tfg:grass/rusticus_mycelium')
|
||||||
|
event.add('minecraft:mineable/shovel', 'tfg:grass/sangnum_mycelium')
|
||||||
// #endregion
|
// #endregion
|
||||||
|
|
||||||
// Mars stone dust
|
// Mars stone dust
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue