Skip to content

Commit

Permalink
fix #7
Browse files Browse the repository at this point in the history
  • Loading branch information
Apeiros-46B committed Dec 29, 2022
1 parent ff836bc commit 6950e5d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 15 deletions.
Expand Up @@ -42,21 +42,9 @@ protected void newInstanceEffects(World w, Location l) {
}
// }}}

// {{{ Set up recipes
// {{{ Potion recipes are registered in the potion classes
@Override
protected void addDefaultRecipes() {
// {{{ Potion of Osmosis
this.newRecipe(
// Out
AlchimiaItems.POTION_OF_OSMOSIS,

// In
AlchimiaItems.EXP_CRYSTAL, new ItemStack(Material.NETHERITE_BLOCK), AlchimiaItems.EXP_CRYSTAL,
AlchimiaItems.DARK_ESSENCE, new ItemStack(Material.DRAGON_BREATH), AlchimiaItems.LIGHT_ESSENCE,
AlchimiaItems.DARKSTEEL, new ItemStack(Material.LAVA_BUCKET), AlchimiaItems.ILLUMIUM
);
// }}}
}
protected void addDefaultRecipes() {}
// }}}

// {{{ Finish crafting
Expand Down
Expand Up @@ -25,7 +25,7 @@
public class PotionOfOsmosis extends AbstractListenerPotion {

public PotionOfOsmosis(ItemGroup ig, CosmicCauldron cauldron) {
super(ig, AlchimiaItems.POTION_OF_OSMOSIS, AlchimiaUtils.RecipeTypes.DIVINE_ALTAR, new ItemStack[] {
super(ig, AlchimiaItems.POTION_OF_OSMOSIS, AlchimiaUtils.RecipeTypes.COSMIC_CAULDRON, new ItemStack[] {
AlchimiaItems.EXP_CRYSTAL, new ItemStack(Material.NETHERITE_SCRAP), AlchimiaItems.EXP_CRYSTAL,
AlchimiaItems.DARK_ESSENCE, new ItemStack(Material.HONEY_BOTTLE), AlchimiaItems.LIGHT_ESSENCE,
AlchimiaItems.DARKSTEEL, new ItemStack(Material.DRAGON_BREATH), AlchimiaItems.ILLUMIUM
Expand Down

0 comments on commit 6950e5d

Please sign in to comment.