Skip to content

Commit

Permalink
Fix some JEI Info, remove no recipe items
Browse files Browse the repository at this point in the history
  • Loading branch information
enigmaquip committed Aug 23, 2022
1 parent 98f35b9 commit ac20417
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 9 deletions.
2 changes: 1 addition & 1 deletion config/reliquary-common.toml
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ mobDropsEnabled = true
#Whether entities get angry at player if stealing fails
angerOnStealFailure = true
#Allows switching stealing from player on and off
stealFromPlayers = true
stealFromPlayers = false

#Seeker Shot settings
[items.seekerShot]
Expand Down
4 changes: 2 additions & 2 deletions kubejs/client_scripts/jei_info.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ onEvent('jei.information', event => {
event.add('productivebees:snow_nest', 'In this Skyblock, this nest will attract bees in any overworld biome.')
event.add('productivebees:gravel_nest', 'In this Skyblock, this nest will attract bees in any overworld biome.')

e.add('mekanism:creative_energy_cube',[
event.add('mekanism:creative_energy_cube',[
'Needs to be energized in a Powah energizing rod with a ATM star.',
'Otherwise acts as an expensive energy trash can.',
])

e.add('pylons:infusion_pylon',[
event.add('pylons:infusion_pylon',[
'Chunkloads a single chunk. Only one pylon per player will load at a time, and only while the player is online.',
])

Expand Down
11 changes: 10 additions & 1 deletion kubejs/client_scripts/jei_removals.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,16 @@ onEvent('jei.hide.items', e => {
'immersiveengineering:stick_steel',
'immersiveengineering:stick_aluminum',
'ftbic:silicon',
'twilightforest:uncrafting_table'
'twilightforest:uncrafting_table',
'projecte:collector_mk1',
'projecte:collector_mk2',
'projecte:collector_mk3',
'projecte:watch_of_flowing_time',
'notenoughwands:protection_wand',
'notenoughwands:moving_wand',
'notenoughwands:swapping_wand',
'notenoughwands:displacement_wand',
'reliquary:rod_of_lyssa'
])

ftbicMetals.forEach(metal => {
Expand Down
6 changes: 6 additions & 0 deletions kubejs/server_scripts/mod_specific/notenoughwands/removals.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
onEvent('recipes',event => {
event.remove({id:'notenoughwands:protection_wand'}),
event.remove({id:'notenoughwands:moving_wand'}),
event.remove({id:'notenoughwands:swapping_wand'}),
event.remove({id:'notenoughwands:displacement_wand'})
})
3 changes: 3 additions & 0 deletions kubejs/server_scripts/mod_specific/reliquary/removals.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
onEvent('recipes',event => {
event.remove({id:'reliquary:rod_of_lyssa'})
})
2 changes: 1 addition & 1 deletion kubejs/server_scripts/tags.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ onEvent('tags.blocks', e => {
e.add('minecraft:mineable/pickaxe',['cobblefordays:tier_1','cobblefordays:tier_2','cobblefordays:tier_3','cobblefordays:tier_4','cobblefordays:tier_5','enderstorage:ender_chest','enderstorage:ender_tank'])
e.add('exnihilosequentia:mineable/hammer',['allthecompressed:cobblestone_block_1x','allthecompressed:gravel_block_1x','allthecompressed:sand_block_1x'])
e.add('minecraft:climbable', ['minecraft:chain', /additionallanterns:.*_chain/])
e.add('forge:relocation_not_supported', [/productivebees:.+/, 'minecraft:beehive', 'minecraft:bee_nest', /integrateddynamics:.+/, /exnihilosequentia:.+/, /botania:.+/, /compactmachines:.+/])
e.add('forge:relocation_not_supported', [/productivebees:.+/, 'minecraft:beehive', 'minecraft:bee_nest', /integrateddynamics:.+/, /exnihilosequentia:.+/, /botania:.+/, /compactmachines:.+/, /pipez:.*_pipe/])
e.add('ae2:blacklisted/spatial','#forge:relocation_not_supported')
})

Expand Down
4 changes: 0 additions & 4 deletions kubejs/server_scripts/unify.js
Original file line number Diff line number Diff line change
Expand Up @@ -691,10 +691,6 @@ onEvent('recipes', e => {
'ftbic:shaped/enderium_dust_2',
'ftbic:separating/silicon_from_quartz',
'ftbic:separating/silicon_from_sand',
'notenoughwands:protection_wand',
'notenoughwands:moving_wand',
'notenoughwands:swapping_wand',
'notenoughwands:displacement_wand'
]);

removeRecipeByOutput(e, [
Expand Down

0 comments on commit ac20417

Please sign in to comment.