diff --git a/Dependencies/GWCA/bin/gwca.dll b/Dependencies/GWCA/bin/gwca.dll index c005958d3..b0d318234 100644 Binary files a/Dependencies/GWCA/bin/gwca.dll and b/Dependencies/GWCA/bin/gwca.dll differ diff --git a/Dependencies/GWCA/include/GWCA/GWCAVersion.h b/Dependencies/GWCA/include/GWCA/GWCAVersion.h index 241746dda..947584361 100644 --- a/Dependencies/GWCA/include/GWCA/GWCAVersion.h +++ b/Dependencies/GWCA/include/GWCA/GWCAVersion.h @@ -2,9 +2,9 @@ #define GWCA_VERSION_MAJOR 1 #define GWCA_VERSION_MINOR 0 -#define GWCA_VERSION_PATCH 13 +#define GWCA_VERSION_PATCH 14 #define GWCA_VERSION_BUILD 0 -#define GWCA_VERSION "1.0.13.0" +#define GWCA_VERSION "1.0.14.0" namespace GWCA { constexpr int VersionMajor = GWCA_VERSION_MAJOR; diff --git a/GWToolboxdll/Windows/Hotkeys.cpp b/GWToolboxdll/Windows/Hotkeys.cpp index b5fe37979..b267817e5 100644 --- a/GWToolboxdll/Windows/Hotkeys.cpp +++ b/GWToolboxdll/Windows/Hotkeys.cpp @@ -750,7 +750,9 @@ void HotkeySendChat::Execute() if (show_message_in_emote_channel && channel == L'/') { Log::Flash("/%s", message); } - GW::Chat::SendChat(channel, message); + GW::GameThread::Enqueue([&]() { + GW::Chat::SendChat(channel, message); + }); } HotkeyUseItem::HotkeyUseItem(const ToolboxIni* ini, const char* section)