From 3e479b33478f3b4d4e7d3dceecb4eee09e0605fc Mon Sep 17 00:00:00 2001 From: Anna Date: Tue, 3 Oct 2023 03:15:26 -0400 Subject: [PATCH] fix: handle new dalamud context menu --- client/ExtraChat/Plugin.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ExtraChat/Plugin.cs b/client/ExtraChat/Plugin.cs index 656a69c..8cdbcd6 100644 --- a/client/ExtraChat/Plugin.cs +++ b/client/ExtraChat/Plugin.cs @@ -85,7 +85,7 @@ public class Plugin : IDalamudPlugin { public Plugin() { SodiumInit.Init(); WorldUtil.Initialise(this.DataManager!); - this.ContextMenu = new DalamudContextMenu(); + this.ContextMenu = new DalamudContextMenu(this.Interface); this.Config = this.Interface!.GetPluginConfig() as Configuration ?? new Configuration(); this.Client = new Client(this); this.Commands = new Commands(this);