Skip to content

Commit

Permalink
Disable update checker, fix typos, remove soul jar recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremiahwinsley committed Jul 24, 2022
1 parent 9e0a116 commit 0c25be7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 48 deletions.
2 changes: 2 additions & 0 deletions config/fml.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Enable forge global version checking
versionCheck = false
2 changes: 1 addition & 1 deletion config/skyblockbuilder/common-config.json5
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@
"minecraft:frozen_peaks",
"minecraft:frozen_river",
"minecraft:ice_spikes",
"minecraft:snowy_plains
"minecraft:snowy_plains",
"minecraft:snowy_slopes",
"minecraft:snowy_taiga",
"minecraft:swamp"
Expand Down
3 changes: 1 addition & 2 deletions kubejs/server_scripts/mod_specific/ex_nihilo/ex_nihilo.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ onEvent(`recipes`, e => {
sieve(`diamond`, 0.2, `#minecraft:sand`, `mysticalagriculture:prosperity_shard`, null)
sieve(`iron`, 0.25, `minecraft:sand`, `minecraft:ink_sac`, true)
sieve(`iron`, 0.02, `minecraft:sand`, `mekanism:salt`, null)
sieve(`flint`, 0.09, `minecraft:sand`, `mana-and-artifice:vinteum_dust`, null)
sieve(`emerald`, 0.25, `#minecraft:sand`, `forbidden_arcanus:arcane_crystal`, null)
sieve(`emerald`, 0.05, `minecraft:dirt`, `integrateddynamics:menril_berries`, true)

Expand Down Expand Up @@ -122,7 +121,7 @@ onEvent(`recipes`, e => {
hammer(`allthecompressed:gravel_block_1x`, `allthecompressed:sand_block_1x`)
hhammer(`allthecompressed:sand_block_1x`, exDust, 9)
hhammer(`allthecompressed:netherrack_block_1x`, exRack, 9)
hhammer(`allthecompressed:endstone_block_1x`, exEnd, 9)
hhammer(`allthecompressed:end_stone_block_1x`, exEnd, 9)

crushEm(exDust, `#minecraft:sand`)
crushEm(exRack, `#forge:netherrack`)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,49 +7,4 @@ onEvent('recipes', e => {
});

maInfusion(e,'kubejs:magical_soil', 'botania:overgrowth_seed', 'botania:gaia_ingot', 'mysticalagradditions:insanium_block', 'botania:gaia_ingot', 'mysticalagradditions:insanium_block', 'botania:gaia_ingot', 'mysticalagradditions:insanium_block', 'botania:gaia_ingot', 'mysticalagradditions:insanium_block')


let fish = [
'aquaculture:arapaima',
'aquaculture:atlantic_cod',
'aquaculture:atlantic_halibut',
'aquaculture:atlantic_herring',
'aquaculture:bayad',
'aquaculture:blackfish',
'aquaculture:bluegill',
'aquaculture:boulti',
'aquaculture:brown_shrooma',
'aquaculture:brown_trout',
'aquaculture:capitaine',
'aquaculture:carp',
'aquaculture:catfish',
'aquaculture:gar',
'aquaculture:minnow',
'aquaculture:muskellunge',
'aquaculture:pacific_halibut',
'aquaculture:perch',
'aquaculture:pink_salmon',
'aquaculture:piranha',
'aquaculture:pollock',
'aquaculture:rainbow_trout',
'aquaculture:red_grouper',
'aquaculture:red_shrooma',
'aquaculture:smallmouth_bass',
'aquaculture:synodontis',
'aquaculture:tambaqui',
'aquaculture:tuna',
];

fish.forEach(name => {
e.custom({
type: 'mysticalagriculture:soul_extraction',
input: {
item: name
},
output: {
type: 'mysticalagriculture:fish',
souls: 0.5
}
})
})
})

0 comments on commit 0c25be7

Please sign in to comment.