Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…ragons into develop
  • Loading branch information
KuryKat committed Sep 17, 2023
2 parents 7ab2db2 + 768b490 commit 57c437f
Show file tree
Hide file tree
Showing 9 changed files with 46 additions and 56 deletions.
38 changes: 22 additions & 16 deletions MODLIST.md

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions kubejs/server_scripts/base/recipes/create/crushing.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ServerEvents.recipes(event => {
const id_prefix = 'blocky_dragons:base/create/crushing/'
ServerEvents.recipes((event) => {
const id_prefix = 'blocky_dragons:base/create/crushing/';

let recipes = [
{
Expand All @@ -12,7 +12,7 @@ ServerEvents.recipes(event => {
processingTime: 120,
id: `${id_prefix}crushed_end_stone`
}
]
];

recipes.forEach((recipe) => {
recipe.type = 'create:crushing';
Expand All @@ -23,4 +23,4 @@ ServerEvents.recipes(event => {
recipe.results = recipe.outputs;
event.custom(recipe).id(recipe.id);
});
})
});
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
ServerEvents.recipes(event => {
event.replaceInput(
{ id: "occultism:spirit_fire/otherstone" },
"minecraft:andesite",
{ tag: "forge:stone" }
)
})
ServerEvents.recipes((event) => {
event.replaceInput({ id: 'occultism:spirit_fire/otherstone' }, 'minecraft:andesite', { tag: 'forge:stone' });
});
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
ServerEvents.tags("block", event => {
event.add("create:passive_boiler_heaters", [
/powah:.*_crystal_block/,
/magma/,
/campfire/
])
})
ServerEvents.tags('block', (event) => {
event.add('create:passive_boiler_heaters', [/powah:.*_crystal_block/, /magma/, /campfire/]);
});
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
ServerEvents.tags('fluid', event => {
event.get('create:bottomless/allow').add([
/chocolate/,
/sugar/,
/honey/,
/caramel/
])
})
ServerEvents.tags('fluid', (event) => {
event.get('create:bottomless/allow').add([/chocolate/, /sugar/, /honey/, /caramel/]);
});
6 changes: 3 additions & 3 deletions kubejs/server_scripts/base/tags/fluids/forge/kerosene.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
ServerEvents.tags('fluid', event => {
event.add('forge:kerosene', 'createindustry:kerosene')
})
ServerEvents.tags('fluid', (event) => {
event.add('forge:kerosene', 'createindustry:kerosene');
});
4 changes: 3 additions & 1 deletion kubejs/server_scripts/base/tags/fluids/minecraft/water.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
ServerEvents.tags('fluid', (event) => {
event.get('minecraft:water').remove([/bioethanol/, /blood/, /tallow/, /seed_oil/, /chocolate/, /caramel/, /sauce/, /fertilizer/, /sugar/]);
event
.get('minecraft:water')
.remove([/bioethanol/, /blood/, /tallow/, /seed_oil/, /chocolate/, /caramel/, /sauce/, /fertilizer/, /sugar/]);
});
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
ServerEvents.tags('item', (event) => {
event
.get('create:upright_on_belt')
.add([
/bottle/,
/bucket/
]);
event.get('create:upright_on_belt').add([/bottle/, /bucket/]);
});
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ServerEvents.tags('item', event => {
event.removeAll('perpetual_durability:perpetual')
event.add('perpetual_durability:perpetual', ['minecraft:nether_star'])
})
ServerEvents.tags('item', (event) => {
event.removeAll('perpetual_durability:perpetual');
event.add('perpetual_durability:perpetual', ['minecraft:nether_star']);
});

0 comments on commit 57c437f

Please sign in to comment.