mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Fix missing event handler registration
This commit is contained in:
parent
e7afde82b2
commit
6b4094d89a
1 changed files with 6 additions and 0 deletions
|
|
@ -404,6 +404,12 @@ internal class GameInventoryPluginScoped : IDisposable, IServiceType, IGameInven
|
|||
this.gameInventoryService.ItemChanged += this.OnInventoryItemChangedForward;
|
||||
this.gameInventoryService.ItemSplit += this.OnInventoryItemSplitForward;
|
||||
this.gameInventoryService.ItemMerged += this.OnInventoryItemMergedForward;
|
||||
this.gameInventoryService.ItemAddedExplicit += this.OnInventoryItemAddedExplicitForward;
|
||||
this.gameInventoryService.ItemRemovedExplicit += this.OnInventoryItemRemovedExplicitForward;
|
||||
this.gameInventoryService.ItemChangedExplicit += this.OnInventoryItemChangedExplicitForward;
|
||||
this.gameInventoryService.ItemMovedExplicit += this.OnInventoryItemMovedExplicitForward;
|
||||
this.gameInventoryService.ItemSplitExplicit += this.OnInventoryItemSplitExplicitForward;
|
||||
this.gameInventoryService.ItemMergedExplicit += this.OnInventoryItemMergedExplicitForward;
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue