From 31c7c4ead629bdb51226e358ed6be48b89477cc8 Mon Sep 17 00:00:00 2001 From: JustAHuman-xD <65748158+JustAHuman-xD@users.noreply.github.com> Date: Sat, 20 Jan 2024 15:10:17 -0600 Subject: [PATCH] Make SlimefunItem#getOptionalByItem static like intended (#4098) --- .../github/thebusybiscuit/slimefun4/api/items/SlimefunItem.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/github/thebusybiscuit/slimefun4/api/items/SlimefunItem.java b/src/main/java/io/github/thebusybiscuit/slimefun4/api/items/SlimefunItem.java index 28dc680ff..6400d8b92 100644 --- a/src/main/java/io/github/thebusybiscuit/slimefun4/api/items/SlimefunItem.java +++ b/src/main/java/io/github/thebusybiscuit/slimefun4/api/items/SlimefunItem.java @@ -1199,7 +1199,7 @@ public class SlimefunItem implements Placeable { * The {@link ItemStack} to check * @return The {@link Optional} {@link SlimefunItem} associated with this {@link ItemStack} if present, otherwise empty */ - public @Nonnull Optional getOptionalByItem(@Nullable ItemStack item) { + public static @Nonnull Optional getOptionalByItem(@Nullable ItemStack item) { return Optional.ofNullable(getByItem(item)); } }