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

Merge pull request #3659 from dniym/patch-1

This commit is contained in:
Sfiguz7 2023-06-08 22:25:52 +02:00 committed by GitHub
commit 53f8988373
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -118,7 +118,7 @@ public class SoulboundRune extends SimpleSlimefunItem<ItemDropHandler> {
if (entity instanceof Item) { if (entity instanceof Item) {
Item item = (Item) entity; Item item = (Item) entity;
return !SlimefunUtils.isSoulbound(item.getItemStack()) && !isItem(item.getItemStack()); return item.getPickupDelay() == 0 && !SlimefunUtils.isSoulbound(item.getItemStack()) && !isItem(item.getItemStack());
} }
return false; return false;