We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c59c8a8 commit 64e1969Copy full SHA for 64e1969
electron/main/game/game.parser.ts
@@ -453,6 +453,14 @@ export class GameParserImpl implements GameParser {
453
case 'popStream': // <popStream/>
454
this.emitPopStreamGameEvent();
455
break;
456
+ case 'streamWindow': // <streamWindow id='room' subtitle=' - [The Crossing, Hodierna Way]' />
457
+ if (attributes.id === 'room') {
458
+ this.emitRoomGameEvent({
459
+ tagId: 'room name',
460
+ roomText: attributes.subtitle?.slice(3) ?? '[unknown]',
461
+ });
462
+ }
463
+ break;
464
case 'compass': // <compass>...</compass>
465
this.compassDirections = [];
466
0 commit comments