Disable energy p2p (#1661)
* github being github * First bandage fix for removing FE P2P
This commit is contained in:
parent
6134da9caf
commit
4d801d9c96
8 changed files with 293 additions and 288 deletions
|
|
@ -76,7 +76,7 @@
|
|||
"CrystalResonanceGeneratorRate_comment": "How much energy a crystal resonance generator generates per tick.",
|
||||
"CrystalResonanceGeneratorRate": 20.0,
|
||||
"p2pTunnelEnergyTax_comment": "The cost to transport energy through an energy P2P tunnel expressed as a factor of the transported energy.",
|
||||
"p2pTunnelEnergyTax": 0.025,
|
||||
"p2pTunnelEnergyTax": 0.999,
|
||||
"p2pTunnelTransportTax_comment": "The cost to transport items/fluids/etc. through P2P tunnels, expressed in AE energy per equivalent I/O bus operation for the transported object type (i.e. items\u003dper 1 item, fluids\u003dper 125mb).",
|
||||
"p2pTunnelTransportTax": 0.025
|
||||
},
|
||||
|
|
|
|||
|
|
@ -17,6 +17,8 @@ const registerAE2Recipes = (event) => {
|
|||
], mod: 'ae2'
|
||||
});
|
||||
|
||||
event.remove( { output: 'ae2:fe_p2p_tunnel' } )
|
||||
|
||||
// Cutting knives (for renaming things)
|
||||
event.shaped('ae2:certus_quartz_cutting_knife', [
|
||||
' A',
|
||||
|
|
|
|||
|
|
@ -11,6 +11,8 @@ const registerAE2ItemTags = (event) => {
|
|||
event.remove('forge:storage_blocks', 'ae2:quartz_block')
|
||||
event.remove('forge:storage_blocks/certus_quartz', 'ae2:quartz_block')
|
||||
|
||||
event.removeAll('ae2:p2p_attunements/fe_p2p_tunnel')
|
||||
|
||||
event.add('tfg:certus_quartz_blocks', 'gtceu:certus_quartz_block')
|
||||
event.add('tfg:certus_quartz_blocks', 'ae2:quartz_block')
|
||||
event.add('tfg:certus_quartz_blocks', 'ae2:cut_quartz_block')
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@ global.AE2_DISABLED_ITEMS = [
|
|||
'ae2:charged_staff',
|
||||
'ae2:name_press',
|
||||
'ae2:charger',
|
||||
'ae2:fe_p2p_tunnel',
|
||||
|
||||
// Блоки
|
||||
'ae2:vibration_chamber',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue