aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/events/ParticleSpawnEvent.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/events/ParticleSpawnEvent.kt')
-rw-r--r--src/main/kotlin/events/ParticleSpawnEvent.kt8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/kotlin/events/ParticleSpawnEvent.kt b/src/main/kotlin/events/ParticleSpawnEvent.kt
index 9359e4b..578fa0d 100644
--- a/src/main/kotlin/events/ParticleSpawnEvent.kt
+++ b/src/main/kotlin/events/ParticleSpawnEvent.kt
@@ -3,12 +3,12 @@
package moe.nea.firmament.events
import org.joml.Vector3f
-import net.minecraft.particle.ParticleEffect
-import net.minecraft.util.math.Vec3d
+import net.minecraft.core.particles.ParticleOptions
+import net.minecraft.world.phys.Vec3
data class ParticleSpawnEvent(
- val particleEffect: ParticleEffect,
- val position: Vec3d,
+ val particleEffect: ParticleOptions,
+ val position: Vec3,
val offset: Vector3f,
val longDistance: Boolean,
val count: Int,