blob: 53ef1f4e9b78eb17e8a8c28ae3b1472c1d57d2ea (
plain)
1
2
3
4
5
6
7
|
package moe.nea.firmament.util.mc
import net.minecraft.entity.EquipmentSlot
import net.minecraft.entity.player.PlayerEntity
val PlayerEntity.mainHandStack get() = this.getEquippedStack(EquipmentSlot.MAINHAND)
|