Skip to content
Snippets Groups Projects
Commit 57e28d5f authored by MELERIX's avatar MELERIX
Browse files

BETA: Minor fix for [8025], thanks qwerty13.

parent 2d4f05b6
No related branches found
No related tags found
No related merge requests found
......@@ -90,7 +90,7 @@ public class ChatAll implements IChatHandler
return;
}
if (text.startsWith(".") || !text.startsWith(".."))
if (text.startsWith(".") && !text.startsWith(".."))
activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.INCORRECT_SYNTAX));
else
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment