blob: 6ed537234d3d103514cf03529c546e8031ff12da (
plain)
1
2
3
4
5
6
7
8
|
package at.hannibal2.skyhanni.mixins.hooks
import at.hannibal2.skyhanni.events.RenderItemTooltipEvent
import net.minecraft.item.ItemStack
fun renderToolTip(stack: ItemStack) {
RenderItemTooltipEvent(stack).postAndCatch()
}
|