remove references..
This commit is contained in:
@@ -65,6 +65,7 @@ namespace LightlessSync;
|
||||
|
||||
*/
|
||||
#pragma warning restore S125 // Sections of code should not be commented out
|
||||
// thank you dark 🙏
|
||||
|
||||
public class MarePlugin : MediatorSubscriberBase, IHostedService
|
||||
{
|
||||
@@ -89,9 +90,9 @@ public class MarePlugin : MediatorSubscriberBase, IHostedService
|
||||
public Task StartAsync(CancellationToken cancellationToken)
|
||||
{
|
||||
var version = Assembly.GetExecutingAssembly().GetName().Version!;
|
||||
Logger.LogInformation("Launching {name} {major}.{minor}.{build}", "Mare Synchronos", version.Major, version.Minor, version.Build);
|
||||
Logger.LogInformation("Launching {name} {major}.{minor}.{build}", "Lightless Sync", version.Major, version.Minor, version.Build);
|
||||
Mediator.Publish(new EventMessage(new Services.Events.Event(nameof(MarePlugin), Services.Events.EventSeverity.Informational,
|
||||
$"Starting Mare Synchronos {version.Major}.{version.Minor}.{version.Build}")));
|
||||
$"Starting Lightless Sync {version.Major}.{version.Minor}.{version.Build}")));
|
||||
|
||||
Mediator.Subscribe<SwitchToMainUiMessage>(this, (msg) => { if (_launchTask == null || _launchTask.IsCompleted) _launchTask = Task.Run(WaitForPlayerAndLaunchCharacterManager); });
|
||||
Mediator.Subscribe<DalamudLoginMessage>(this, (_) => DalamudUtilOnLogIn());
|
||||
|
||||
Reference in New Issue
Block a user