Merge remote-tracking branch 'origin/main' into server

This commit is contained in:
SFKao 2026-03-18 20:07:03 +01:00
commit 130a75f736

View File

@ -108,4 +108,24 @@ ServerEvents.recipes(event => {
Item.of('minecraft:moss_block').withChance(0.2) Item.of('minecraft:moss_block').withChance(0.2)
], '#minecraft:logs'); ], '#minecraft:logs');
// Fixing limestone
// Remove Garnished limestone milling
event.remove({ id: 'garnished:milling/crushed_salt' })
// Remove Aquatic Ambitions limestone milling
event.remove({ id: 'create_aquatic_ambitions:milling/limestone' })
event.recipes.create.milling([
Item.of('garnished:crushed_salt'),
Item.of('create_aquatic_ambitions:calcium_rich_powder'),
Item.of('create_aquatic_ambitions:calcium_rich_powder').withChance(0.5),
Item.of('create_aquatic_ambitions:suspicious_rock').withChance(0.05)
], 'create:limestone')
// Remove salt from limestone crushing
event.remove({id: 'garnished:crushing/crushed_salt'})
}); });