From adacf63bc370a8ce808f22fda07a65bfc910212c Mon Sep 17 00:00:00 2001 From: Infi Date: Sun, 19 May 2024 02:47:48 +0200 Subject: [PATCH] Fix compile error in release mode --- ChatTwo/Plugin.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChatTwo/Plugin.cs b/ChatTwo/Plugin.cs index 952f457..a2c0021 100755 --- a/ChatTwo/Plugin.cs +++ b/ChatTwo/Plugin.cs @@ -128,7 +128,7 @@ public sealed class Plugin : IDalamudPlugin // Avoid 300ms hitch when sending first message by preloading the // auto-translate cache. Don't do this in debug because it makes // profiling difficult. - AutoTranslate.PreloadCache(DataManager); + AutoTranslate.PreloadCache(); #endif } catch