You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix: add empty color field to v1 sector event format
The v1 JSON format includes a color field at index 3 between side and
position: [objectType, unitName, side, color, [x, y, z]]. The builder
was omitting this field, shifting position from index 4 to index 3 and
breaking index-based consumers. Add empty string placeholder for color
since the extension does not capture it.
* feat: capture color field in sector events
Add Color field to SectorEvent struct and parse it from :EVENT:SECTOR:
args at index 5. Update v1 JSON export to use the actual color value
instead of a hardcoded empty string. Args format changes from
[frame, type, objectType, unitName, side, posX?, posY?, posZ?] to
[frame, type, objectType, unitName, side, color, posX?, posY?, posZ?].
* fix: use sector test data instead of flag in sector event tests
0 commit comments