Skip to content

Commit e9daafe

Browse files
committed
Fix another exception issue
1 parent 3a87fb5 commit e9daafe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AdvancedCore/src/com/bencodez/advancedcore/api/misc/effects/ItemMessage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ private void sendItemSlotChange(Player player, int slot, ItemStack stack) {
169169
setSlot.getItemModifier().write(0, stack);
170170
try {
171171
ProtocolLibrary.getProtocolManager().sendServerPacket(player, setSlot);
172-
} catch (InvocationTargetException e) {
172+
} catch (Exception e) {
173173
e.printStackTrace();
174174
}
175175
}

0 commit comments

Comments
 (0)