1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-19 19:25:48 +00:00

Check if the soulbound rune is disabled

This commit is contained in:
JustAHuman-xD 2023-03-02 07:44:27 -06:00
parent 137cdc94bf
commit f08a57e3e6

View File

@ -11,6 +11,7 @@ import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.annotation.ParametersAreNonnullByDefault;
import io.github.thebusybiscuit.slimefun4.implementation.SlimefunItems;
import org.apache.commons.lang.Validate;
import org.bukkit.ChatColor;
import org.bukkit.Location;
@ -120,7 +121,7 @@ public final class SlimefunUtils {
if (item != null && item.getType() != Material.AIR) {
ItemMeta meta = item.hasItemMeta() ? item.getItemMeta() : null;
if (hasSoulboundFlag(meta)) {
if (!SlimefunItems.SOULBOUND_RUNE.getItem().isDisabled() && hasSoulboundFlag(meta)) {
return true;
}