Add toString() implementation to MonsterEntity

This commit is contained in:
DBotThePony 2025-01-01 09:42:28 +07:00
parent 79381845b0
commit 297fb46bde
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -327,6 +327,10 @@ class MonsterEntity(val variant: MonsterVariant, level: Double? = null) : ActorE
private val deathDamageKinds = ObjectArraySet<String>()
override fun toString(): String {
return "MonsterEntity[${variant.type}@${variant.seed} / ${if (isInWorld) world.toString() else "not in world"} / $position]"
}
override fun experienceDamage(damage: DamageRequestPacket): List<DamageNotification> {
val notifications = statusController.experienceDamage(damage.request)
val totalDamage = notifications.sumOf { it.healthLost }