2026-02-13 00:10:01 -08:00
|
|
|
{
|
|
|
|
|
"OBJECT_FIELD_ENTRY": 3,
|
feat: propagate OBJECT_FIELD_SCALE_X through creature and GO spawn pipeline
Reads OBJECT_FIELD_SCALE_X (field 4, cross-expansion) from CREATE_OBJECT
update fields and passes it through the full creature and game object spawn
chain: game_handler callbacks → pending spawn structs → async load results
→ createInstance() calls. This gives boss giants, gnomes, children, and
other non-unit-scale NPCs correct visual size, and ensures scaled GOs
(e.g. large treasure chests, oversized plants) render at the server-specified
scale rather than always at 1.0.
- Added OBJECT_FIELD_SCALE_X to UF enum and all expansion update_fields.json
- Added float scale to CreatureSpawnCallback and GameObjectSpawnCallback
- Propagated scale through PendingCreatureSpawn, PreparedCreatureModel,
PendingGameObjectSpawn, PreparedGameObjectWMO
- Used scale in charRenderer/m2Renderer/wmoRenderer createInstance() calls
- Sanity-clamped raw float to [0.01, 100.0] range before use
2026-03-10 22:45:47 -07:00
|
|
|
"OBJECT_FIELD_SCALE_X": 4,
|
2026-02-13 00:10:01 -08:00
|
|
|
"UNIT_FIELD_TARGET_LO": 16,
|
|
|
|
|
"UNIT_FIELD_TARGET_HI": 17,
|
2026-02-13 19:40:54 -08:00
|
|
|
"UNIT_FIELD_BYTES_0": 36,
|
2026-02-13 00:10:01 -08:00
|
|
|
"UNIT_FIELD_HEALTH": 22,
|
|
|
|
|
"UNIT_FIELD_POWER1": 23,
|
|
|
|
|
"UNIT_FIELD_MAXHEALTH": 28,
|
|
|
|
|
"UNIT_FIELD_MAXPOWER1": 29,
|
|
|
|
|
"UNIT_FIELD_LEVEL": 34,
|
|
|
|
|
"UNIT_FIELD_FACTIONTEMPLATE": 35,
|
|
|
|
|
"UNIT_FIELD_FLAGS": 46,
|
|
|
|
|
"UNIT_FIELD_DISPLAYID": 131,
|
|
|
|
|
"UNIT_FIELD_MOUNTDISPLAYID": 133,
|
Fix mount sounds, grey WMO meshes, taxi landing, tree animations, and classic dismount
- Per-family mount sounds (kodo, tallstrider, mechanostrider, etc.) detected from M2 model path
- Skip WMO groups with SHOW_SKYBOX flag or all-untextured batches (grey mesh in Orgrimmar)
- Freeze physics during taxi landing until terrain loads to prevent falling through void
- Disable bone animations on tropical vegetation (palm, bamboo, banana, etc.) to fix wiggling
- Snap player to final taxi waypoint on flight completion
- Extract mount aura spell ID from classic UNIT_FIELD_AURAS for CMSG_CANCEL_AURA dismount
- Increase /unstuck forward nudge to 5 units
2026-02-14 21:04:20 -08:00
|
|
|
"UNIT_FIELD_AURAS": 50,
|
2026-02-13 00:10:01 -08:00
|
|
|
"UNIT_NPC_FLAGS": 147,
|
|
|
|
|
"UNIT_DYNAMIC_FLAGS": 143,
|
2026-02-19 17:45:09 -08:00
|
|
|
"UNIT_FIELD_RESISTANCES": 154,
|
2026-02-13 00:10:01 -08:00
|
|
|
"UNIT_END": 188,
|
|
|
|
|
"PLAYER_FLAGS": 190,
|
2026-02-13 19:40:54 -08:00
|
|
|
"PLAYER_BYTES": 191,
|
|
|
|
|
"PLAYER_BYTES_2": 192,
|
2026-02-13 00:10:01 -08:00
|
|
|
"PLAYER_XP": 716,
|
|
|
|
|
"PLAYER_NEXT_LEVEL_XP": 717,
|
2026-03-10 07:35:30 -07:00
|
|
|
"PLAYER_REST_STATE_EXPERIENCE": 718,
|
2026-02-13 00:10:01 -08:00
|
|
|
"PLAYER_FIELD_COINAGE": 1176,
|
|
|
|
|
"PLAYER_QUEST_LOG_START": 198,
|
|
|
|
|
"PLAYER_FIELD_INV_SLOT_HEAD": 486,
|
|
|
|
|
"PLAYER_FIELD_PACK_SLOT_1": 532,
|
2026-02-26 11:12:34 -08:00
|
|
|
"PLAYER_FIELD_BANK_SLOT_1": 564,
|
|
|
|
|
"PLAYER_FIELD_BANKBAG_SLOT_1": 612,
|
2026-02-13 00:10:01 -08:00
|
|
|
"PLAYER_SKILL_INFO_START": 718,
|
|
|
|
|
"PLAYER_EXPLORED_ZONES_START": 1111,
|
|
|
|
|
"PLAYER_END": 1282,
|
|
|
|
|
"GAMEOBJECT_DISPLAYID": 8,
|
2026-02-13 22:14:34 -08:00
|
|
|
"ITEM_FIELD_STACK_COUNT": 14,
|
2026-03-10 16:31:18 -07:00
|
|
|
"ITEM_FIELD_DURABILITY": 48,
|
|
|
|
|
"ITEM_FIELD_MAXDURABILITY": 49,
|
2026-02-13 22:14:34 -08:00
|
|
|
"CONTAINER_FIELD_NUM_SLOTS": 48,
|
|
|
|
|
"CONTAINER_FIELD_SLOT_1": 50
|
2026-03-10 07:35:30 -07:00
|
|
|
}
|