Skip to content

Commit

Permalink
Enable spent waste in radioactive cells
Browse files Browse the repository at this point in the history
(but also make them take antimatter)
  • Loading branch information
Satherov committed Feb 2, 2025
1 parent 4527989 commit efd14e8
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
3 changes: 3 additions & 0 deletions config/megacells-common.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#Whether to allow the Radioactive Chemical Cell to store Spent Nuclear Waste.
#AppMek integration feature.
spentNuclearWasteAllowed = true
22 changes: 22 additions & 0 deletions kubejs/server_scripts/mods/Mega Cells/Recipes.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10.
// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.

ServerEvents.recipes(allthemods => {

allthemods.remove({output: 'megacells:radioactive_cell_component'})
allthemods.shaped('megacells:radioactive_cell_component',
[
'ADA',
'BCB',
'ADA'
], {
A: 'megacells:accumulation_processor',
B: 'mekanism:radioactive_waste_barrel',
C: 'megacells:cell_component_64m',
D: '#c:pellets/antimatter',
})

})

// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10.
// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.

0 comments on commit efd14e8

Please sign in to comment.