Fixing limestone recipes
This commit is contained in:
parent
1158c2f852
commit
2375ae9c7f
@ -108,4 +108,24 @@ ServerEvents.recipes(event => {
|
||||
Item.of('minecraft:moss_block').withChance(0.2)
|
||||
], '#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'})
|
||||
|
||||
});
|
||||
Loading…
x
Reference in New Issue
Block a user