We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0379397 commit 156fbc1Copy full SHA for 156fbc1
src/model/Match.ts
@@ -260,6 +260,7 @@ export class Match {
260
case "combat":
261
this.teams.forEach((team) => team.findDuplicateAgents());
262
this.roundTimeoutTime = data.timestamp + 99 * 1000; // Add 99 seconds to the current time
263
+ this.toastInfo.active = false;
264
break;
265
266
case "end":
@@ -522,6 +523,7 @@ export class Match {
522
523
// Activate the toast with data from the event
524
this.toastInfo = data;
525
this.toastInfo.active = true;
526
+ this.eventNumber++;
527
528
if (this.toastInfo.duration !== null) {
529
// Auto-deactivate after the configured duration (ms)
0 commit comments