devtools: add msg command

This commit is contained in:
Adam
2019-09-04 19:39:23 -04:00
parent 03c8166ff4
commit abe7c40852

View File

@@ -352,6 +352,11 @@ public class DevToolsPlugin extends Plugin
client.playSoundEffect(id);
break;
}
case "msg":
{
client.addChatMessage(ChatMessageType.GAMEMESSAGE, "", String.join(" ", args), "");
break;
}
}
}