Skip to content

Commit

Permalink
add getter for machinerecipetype recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
Mooy1 committed Sep 9, 2021
1 parent 02431a1 commit 5c2d66a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.mooy1</groupId>
<artifactId>InfinityLib</artifactId>
<version>1.3.5</version>
<version>1.3.6</version>

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,16 @@
import java.util.Map;
import java.util.function.BiConsumer;

import lombok.Getter;

import org.bukkit.inventory.ItemStack;

import io.github.mooy1.infinitylib.core.AbstractAddon;
import io.github.thebusybiscuit.slimefun4.api.recipes.RecipeType;

public final class MachineRecipeType extends RecipeType {

@Getter
private final Map<ItemStack[], ItemStack> recipes = new LinkedHashMap<>();
private final List<BiConsumer<ItemStack[], ItemStack>> callbacks = new ArrayList<>();

Expand Down

0 comments on commit 5c2d66a

Please sign in to comment.