aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/events/AttackBlockEvent.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/events/AttackBlockEvent.kt')
-rw-r--r--src/main/kotlin/events/AttackBlockEvent.kt16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/main/kotlin/events/AttackBlockEvent.kt b/src/main/kotlin/events/AttackBlockEvent.kt
index bbaa81d..81a2952 100644
--- a/src/main/kotlin/events/AttackBlockEvent.kt
+++ b/src/main/kotlin/events/AttackBlockEvent.kt
@@ -1,16 +1,16 @@
package moe.nea.firmament.events
-import net.minecraft.entity.player.PlayerEntity
-import net.minecraft.util.Hand
-import net.minecraft.util.math.BlockPos
-import net.minecraft.util.math.Direction
-import net.minecraft.world.World
+import net.minecraft.world.entity.player.Player
+import net.minecraft.world.InteractionHand
+import net.minecraft.core.BlockPos
+import net.minecraft.core.Direction
+import net.minecraft.world.level.Level
data class AttackBlockEvent(
- val player: PlayerEntity,
- val world: World,
- val hand: Hand,
+ val player: Player,
+ val world: Level,
+ val hand: InteractionHand,
val blockPos: BlockPos,
val direction: Direction
) : FirmamentEvent.Cancellable() {