1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00

Change visibility to protected 17

This commit is contained in:
IAmSorry 2021-04-19 17:26:34 +02:00 committed by GitHub
parent 86e73631c7
commit cc39df17ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ import me.mrCookieSlime.Slimefun.api.SlimefunItemStack;
public abstract class SlimefunBow extends SlimefunItem {
@ParametersAreNonnullByDefault
public SlimefunBow(Category category, SlimefunItemStack item, ItemStack[] recipe) {
protected SlimefunBow(Category category, SlimefunItemStack item, ItemStack[] recipe) {
super(category, item, RecipeType.MAGIC_WORKBENCH, recipe);
}