diff --git a/gradle.properties b/gradle.properties index dd1603b1..454b7ca8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,7 +13,7 @@ org.gradle.jvmargs=-Xmx1G loom_version=0.5-SNAPSHOT # Mod Properties - mod_version = 1.0.3 + mod_version = 1.1 maven_group = net.barribob archives_base_name = BOMD diff --git a/src/main/kotlin/net/barribob/boss/item/SoulStarEntity.kt b/src/main/kotlin/net/barribob/boss/item/SoulStarEntity.kt index e0e75908..4beba44f 100644 --- a/src/main/kotlin/net/barribob/boss/item/SoulStarEntity.kt +++ b/src/main/kotlin/net/barribob/boss/item/SoulStarEntity.kt @@ -139,11 +139,7 @@ class SoulStarEntity(entityType: EntityType?, world: World? playSound(Mod.sounds.soulStar, 1.0f, 1.0f) this.remove() - val itemEntity = ItemEntity(world, this.x, this.y, this.z, this.stack) - world.spawnEntity(itemEntity) - ModComponents.getWorldEventScheduler(world).addEvent(TimedEvent({ - particleBuilder.build(itemEntity.pos, itemEntity.velocity.multiply(0.1)) - }, 0, 30, { itemEntity.removed })) + world.spawnEntity(ItemEntity(world, this.x, this.y, this.z, this.stack)) } val n = if (this.y < targetY) 1 else -1 vec3d = Vec3d(