From ecda25819b67b9eb77579d494a42c7aa7558fc6c Mon Sep 17 00:00:00 2001 From: IAmSorry <37082875+IAmSorryArt@users.noreply.github.com> Date: Mon, 19 Apr 2021 17:21:07 +0200 Subject: [PATCH] Change visibility to protected 13 --- .../implementation/items/electric/reactors/Reactor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/items/electric/reactors/Reactor.java b/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/items/electric/reactors/Reactor.java index bbdf949fc..c9110eba6 100644 --- a/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/items/electric/reactors/Reactor.java +++ b/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/items/electric/reactors/Reactor.java @@ -78,7 +78,7 @@ public abstract class Reactor extends AbstractEnergyProvider implements Hologram private final Set explosionsQueue = new HashSet<>(); @ParametersAreNonnullByDefault - public Reactor(Category category, SlimefunItemStack item, RecipeType recipeType, ItemStack[] recipe) { + protected Reactor(Category category, SlimefunItemStack item, RecipeType recipeType, ItemStack[] recipe) { super(category, item, recipeType, recipe); new BlockMenuPreset(getId(), getInventoryTitle()) {