feat: never remove projected person for far away
This commit is contained in:
parent
9251e5773b
commit
f5bdaf34bc
@ -6,6 +6,7 @@ import dev.architectury.registry.level.entity.EntityAttributeRegistry
|
|||||||
import net.fabricmc.api.EnvType
|
import net.fabricmc.api.EnvType
|
||||||
import net.minecraft.nbt.CompoundTag
|
import net.minecraft.nbt.CompoundTag
|
||||||
import net.minecraft.network.chat.Component
|
import net.minecraft.network.chat.Component
|
||||||
|
import net.minecraft.network.protocol.game.DebugPackets
|
||||||
import net.minecraft.network.syncher.EntityDataAccessor
|
import net.minecraft.network.syncher.EntityDataAccessor
|
||||||
import net.minecraft.network.syncher.EntityDataSerializers
|
import net.minecraft.network.syncher.EntityDataSerializers
|
||||||
import net.minecraft.network.syncher.SynchedEntityData
|
import net.minecraft.network.syncher.SynchedEntityData
|
||||||
@ -136,4 +137,11 @@ class ProjectedPersonEntity(entityType: EntityType<out PathfinderMob>, level: Le
|
|||||||
InventoryCarrier.pickUpItem(this, this, item)
|
InventoryCarrier.pickUpItem(this, this, item)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun sendDebugPackets() {
|
||||||
|
super.sendDebugPackets()
|
||||||
|
DebugPackets.sendEntityBrain(this)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun removeWhenFarAway(d: Double) = false
|
||||||
|
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user