I don't see an event associated with this. I see under ItemEntity's "Tick" method that there is a
if (getItem().onEntityItemUpdate(this)) return;
Just like there is in the LivingUpdateEvent, however I'm not sure where it corresponds to an event. Inb4 "use your IDE", I did. ItemEvent has very few events branching from it, leading me to believe it's under some other name. Such as:
default boolean onEntityItemUpdate(ItemEntity entity)
{
return getStack().getItem().onEntityItemUpdate(getStack(), entity);
}
Under the IForgeItemStack. But I honestly don't know how to subscribe to that.
I feel like I'm in the right place, but I don't know the correct syntax. I looked on CurseForge for example mods, and although BetterDroppedItems seems like it'd modify this kind of behavior, it doesn't. (just wanted to show ambition rather than just posting for help on first sign of problem.)