Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
Co-authored-by: ZZZank <3410764033@qq.com>
  • Loading branch information
github-actions[bot] and ZZZank committed Apr 22, 2024
1 parent 6454571 commit 7a44f8d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ onEvent('recipes', (event) => {
{
inputs: [],
sourceCost: 5000,
reagent: "kubejs:disabled_recipe_indicator",
output: "arsarsenal:source_steel_ingot",
id: "arsarsenal:source_steel_ingot"
reagent: 'kubejs:disabled_recipe_indicator',
output: 'arsarsenal:source_steel_ingot',
id: 'arsarsenal:source_steel_ingot'
},
{
inputs: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,13 @@ onEvent('recipes', (event) => {
'dustrial_decor:rusty_sheet_metal_door'
];

rusty_items.forEach(item => {
rusty_items.forEach((item) => {
recipes.push({
outputs: [item],
input: item.replace('rusty_', ''),
id:`${id_prefix}${item.split(':')[1]}`
})
})
id: `${id_prefix}${item.split(':')[1]}`
});
});

recipes.forEach((recipe) => {
event.recipes.create.splashing(recipe.outputs, recipe.input).id(recipe.id);
Expand Down

0 comments on commit 7a44f8d

Please sign in to comment.