8 lines
208 B
JavaScript
8 lines
208 B
JavaScript
if(Platform.isLoaded("reliquary")) {
|
|
ServerEvents.recipes(event => {
|
|
event.forEachRecipe({id: /alkahestry/}, recipe => {
|
|
recipe.id(recipe.getId() + "_manual_only")
|
|
})
|
|
})
|
|
}
|