forked from AllTheMods/ATM-10
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable spent waste in radioactive cells
(but also make them take antimatter)
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |