diff --git a/release/plugins/MultiSend.dll b/release/plugins/MultiSend.dll index ca592d2..cb241c2 100644 Binary files a/release/plugins/MultiSend.dll and b/release/plugins/MultiSend.dll differ diff --git a/src/MultiSend/Commands.cpp b/src/MultiSend/Commands.cpp index 0afcc37..395edb7 100644 --- a/src/MultiSend/Commands.cpp +++ b/src/MultiSend/Commands.cpp @@ -15,14 +15,16 @@ bool MultiSend::HandleCommand(const char* command, int32_t type) com += GetArg(com, &arg); - if (_stricmp(arg.c_str(), "send") == 0) + if ((_stricmp(arg.c_str(), "send") == 0) + || (_stricmp(command, "/mss") == 0)) { if (strlen(com) < 2) return true; SendCommand(0xFFFF0000, com + 1); return true; } - if (_stricmp(arg.c_str(), "sendto") == 0) + if ((_stricmp(arg.c_str(), "sendto") == 0) + || (_stricmp(command, "/mst") == 0)) { if (strlen(com) < 2) { @@ -52,7 +54,8 @@ bool MultiSend::HandleCommand(const char* command, int32_t type) m_AshitaCore->GetChatManager()->Write("MultiSend: Character not found."); } - if (_stricmp(arg.c_str(), "sendgroup") == 0) + if ((_stricmp(arg.c_str(), "sendgroup") == 0) + || (_stricmp(command, "/msg") == 0)) { if (strlen(com) < 3) {