1
0
Fork 0

Merge pull request #2 from VelSolana/master

Fixing Trigger Priority Issue
master
KacieXX 2023-02-09 14:57:04 +01:00 committed by GitHub
commit f69744927d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -353,6 +353,9 @@ namespace FFXIV_Vibe_Plugin.Device {
forceStop = true; forceStop = true;
this.SendCommand(command, device, 0, motorId); this.SendCommand(command, device, 0, motorId);
this.Logger.Debug($"Force stopping {deviceAndMotorId} because of StopAfter={StopAfter}"); this.Logger.Debug($"Force stopping {deviceAndMotorId} because of StopAfter={StopAfter}");
// Make sure we clean the current playing trigger whgenever we're force stopping a trigger
this.CurrentPlayingTrigger = null;
} }
}); });
tStopAfter.Start(); tStopAfter.Start();
@ -394,9 +397,6 @@ namespace FFXIV_Vibe_Plugin.Device {
Thread.Sleep(duration); Thread.Sleep(duration);
} }
// Make sure we clean the current playing trigger.
this.CurrentPlayingTrigger = null;
}); });
t.Start(); t.Start();
} }