aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/test/ShowItemUuid.kt
blob: 8665d99b3a87ec09045e6da80d7cb113d1889453 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package at.hannibal2.skyhanni.test

import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.config.ConfigUpdaterMigrator
import at.hannibal2.skyhanni.utils.SkyBlockItemModifierUtils.getItemUuid
import net.minecraftforge.event.entity.player.ItemTooltipEvent
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent

class ShowItemUuid {

    @SubscribeEvent
    fun onItemTooltipLow(event: ItemTooltipEvent) {
        if (!SkyHanniMod.feature.dev.debug.showItemUuid) return
        val itemStack = event.itemStack
        if (itemStack != null) {
            itemStack.getItemUuid()?.let {
                event.toolTip.add("§7Item UUID: '$it'")
            }
        }
    }

    @SubscribeEvent
    fun onConfigFix(event: ConfigUpdaterMigrator.ConfigFixEvent) {
        event.move(3, "dev.showItemUuid", "dev.debug.showItemUuid")
    }
}