Skip to content

Commit ed2a29a

Browse files
authored
raidemulator: Fix invalid field mapping in AbilityExtra (#919)
As mentioned in #917, noticed this bug while testing.
1 parent ca8fdb3 commit ed2a29a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ui/raidboss/emulator/data/network_log_converter/LineEvent0x108.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export class LineEvent0x108 extends LineEvent {
2020

2121
this.abilityIdHex = parts[fields.id]?.toUpperCase() ?? '';
2222
this.abilityId = parseInt(this.abilityIdHex, 16);
23-
this.id = parts[fields.id]?.toUpperCase() ?? '';
23+
this.id = parts[fields.sourceId]?.toUpperCase() ?? '';
2424

2525
this.x = parseFloat(parts[fields.x] ?? '');
2626
this.y = parseFloat(parts[fields.y] ?? '');

0 commit comments

Comments
 (0)