diff --git a/core/client.js b/core/client.js index a9b3d555..4501396d 100644 --- a/core/client.js +++ b/core/client.js @@ -492,3 +492,13 @@ Client.prototype.defaultHandlerMissingMod = function(err) { return handler; }; +Client.prototype.terminalSupports = function(query) { + switch(query) { + case 'vtx_audio' : + // https://github.com/codewar65/VTX_ClientServer/blob/master/vtx.txt + return this.termClient === 'vtx'; + + default : + return false; + } +};