Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremiahwinsley committed Jan 23, 2024
1 parent 4896815 commit 3cc42ee
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 15 deletions.
4 changes: 4 additions & 0 deletions config/brandon3055/DraconicEvolution.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -112,3 +112,7 @@
>
}
}
"Client" {
B:"fancyToolModels"=false
B:"toolShaders"=false
}
5 changes: 5 additions & 0 deletions config/oculus.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
enableDebugOptions=false
disableUpdateMessage=true
enableShaders=false
maxShadowRenderDistance=32
shaderPack=
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"program": ["envirotech:ore", "envirotech:gemstone_ore"],
"programs": ["envirotech:ore", "envirotech:gemstone_ore"],
"item": {"raw:item": "zycraft:quartz_crystal", "count":1},
"config": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ onEvent('recipes', e => {
}).id(`kubejs:appliedenergistics2/grinder/ender_pearl_dust`)

e.recipes.lazierae2.centrifuge({
input: { tag: 'forge:flour_plants' },
input: [{ tag: 'forge:flour_plants' }],
output: { item: 'pamhc2foodcore:flouritem' },
processing_time: 160
}).id(`kubejs:appliedenergistics2/pulse_centrifuge/flour`)

e.recipes.lazierae2.centrifuge({
input: { tag: 'forge:ender_pearls' },
input: [{ tag: 'forge:ender_pearls' }],
output: { item: 'thermal:ender_pearl_dust' },
processing_time: 160
}).id(`kubejs:appliedenergistics2/pulse_centrifuge/ender_pearl_dust`)
Expand All @@ -68,22 +68,11 @@ onEvent('recipes', e => {
}
}).id(`kubejs:appliedenergistics2/inscriber/printed_silicon`)

e.recipes.lazierae2.aggregator({
inputs: [
{ input: { item: 'appliedenergistics2:sky_dust' } },
{ input: { tag: 'forge:gems/diamond' } },
{ input: { item: 'thermal:ender_pearl_dust' } }
],
output: { item: 'lazierae2:resonating_gem' },
processing_time: 80
}).id(`kubejs:lazierae2/fluix_aggregator/resonating_gem`)

e.recipes.create.milling('1x thermal:ender_pearl_dust', '#forge:ender_pearls').id(`kubejs:create/compat/ae2/milling/ender_pearl`)
e.recipes.mekanism.crushing('1x thermal:ender_pearl_dust', '#forge:ender_pearls').id('kubejs:mekanism/compat/appliedenergistics2/ender_pearl_to_dust')

removeRecipeByID(e, [
'appliedenergistics2:inscriber/silicon_print',
'lazierae2:fluix_aggregator/resonating_gem'
'appliedenergistics2:inscriber/silicon_print'
])

removeRecipeByOutput(e, [
Expand Down

0 comments on commit 3cc42ee

Please sign in to comment.