blob: 3f4eff4f35cec30050a3da75e99606e15eb5024b (
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
27
28
29
30
31
32
33
|
package at.hannibal2.skyhanni.features.inventory
import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.events.GuiContainerEvent
import at.hannibal2.skyhanni.skyhannimodule.SkyHanniModule
import at.hannibal2.skyhanni.utils.InventoryUtils
import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.LorenzUtils.makeShiftClick
import net.minecraft.client.gui.inventory.GuiChest
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
@SkyHanniModule
object ShiftClickEquipment {
@SubscribeEvent
fun onSlotClick(event: GuiContainerEvent.SlotClickEvent) {
if (!LorenzUtils.inSkyBlock) return
if (!SkyHanniMod.feature.inventory.shiftClickForEquipment) return
if (event.gui !is GuiChest) return
val slot = event.slot ?: return
if (slot.slotNumber == slot.slotIndex) return
if (slot.stack == null) return
val chestName = InventoryUtils.openInventoryName()
if (!chestName.startsWith("Your Equipment")) return
event.makeShiftClick()
}
}
|