mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Fix copy paste error
This commit is contained in:
parent
e01acb4a80
commit
be3f71dc73
2 changed files with 2 additions and 2 deletions
|
|
@ -37,7 +37,7 @@ internal unsafe class AddonLifecycle : IInternalDisposableService
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets a list of all AddonLifecycle Event Listeners.
|
/// Gets a list of all AddonLifecycle Event Listeners.
|
||||||
/// </summary>
|
/// </summary> <br/>
|
||||||
/// Mapping is: EventType -> AddonName -> ListenerList
|
/// Mapping is: EventType -> AddonName -> ListenerList
|
||||||
internal Dictionary<AddonEvent, Dictionary<string, HashSet<AddonLifecycleEventListener>>> EventListeners { get; } = [];
|
internal Dictionary<AddonEvent, Dictionary<string, HashSet<AddonLifecycleEventListener>>> EventListeners { get; } = [];
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -167,7 +167,7 @@ internal unsafe class AddonVirtualTable : IDisposable
|
||||||
|
|
||||||
this.addonFinalizeArg.Clear();
|
this.addonFinalizeArg.Clear();
|
||||||
this.addonFinalizeArg.Addon = thisPtr;
|
this.addonFinalizeArg.Addon = thisPtr;
|
||||||
this.lifecycleService.InvokeListenersSafely(AddonEvent.PreFinalize, this.addonDrawArg);
|
this.lifecycleService.InvokeListenersSafely(AddonEvent.PreFinalize, this.addonFinalizeArg);
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue