Removed references to ElezenSync, properly renamed it Snowcloak now.

This commit is contained in:
Eauldane
2025-08-22 21:17:09 +01:00
parent 4c1bc0a737
commit b564887e80
11 changed files with 18 additions and 18 deletions

View File

@@ -462,9 +462,9 @@ public class DalamudUtilService : IHostedService, IMediatorSubscriber
{
_logger.LogInformation("Starting DalamudUtilService");
#pragma warning disable S2696 // Instance members should not write to "static" fields
ElezenSync.Plugin.Self.RealOnFrameworkUpdate = this.FrameworkOnUpdate;
Snowcloak.Plugin.Self.RealOnFrameworkUpdate = this.FrameworkOnUpdate;
#pragma warning restore S2696
_framework.Update += ElezenSync.Plugin.Self.OnFrameworkUpdate;
_framework.Update += Snowcloak.Plugin.Self.OnFrameworkUpdate;
if (IsLoggedIn)
{
_classJobId = _clientState.LocalPlayer!.ClassJob.RowId;
@@ -479,7 +479,7 @@ public class DalamudUtilService : IHostedService, IMediatorSubscriber
_logger.LogTrace("Stopping {type}", GetType());
Mediator.UnsubscribeAll(this);
_framework.Update -= ElezenSync.Plugin.Self.OnFrameworkUpdate;
_framework.Update -= Snowcloak.Plugin.Self.OnFrameworkUpdate;
return Task.CompletedTask;
}