started items

This commit is contained in:
Boki 2026-03-06 09:59:16 -05:00
parent d124f2c288
commit 4424f4c3a8
12 changed files with 698 additions and 12 deletions

View file

@ -25,6 +25,7 @@ public static class EntityMapper
ThreatLevel = MapThreatLevel(category, rarity),
Rarity = rarity,
Position = pos,
Z = e.Z,
DistanceToPlayer = dist,
IsAlive = e.IsAlive || !e.HasVitals,
LifeCurrent = e.LifeCurrent,
@ -37,6 +38,9 @@ public static class EntityMapper
ActionId = e.ActionId,
IsAttacking = e.IsAttacking,
IsMoving = e.IsMoving,
ItemBaseName = e.ItemBaseName,
IsQuestItem = e.IsQuestItem,
LabelOffset = e.LabelOffset,
};
}