Dropped .cmd default prefix

This commit is contained in:
Dorian Niemiec 2023-11-23 03:17:49 +01:00
parent afbd0fe4c3
commit 598073594e

View file

@ -62,7 +62,6 @@ Mod.prototype.callback = function (req, res, serverconsole, responseEnd, href, e
if(os.platform() == "win32") { if(os.platform() == "win32") {
exttointerpreter[".exe"] = []; exttointerpreter[".exe"] = [];
exttointerpreter[".bat"] = ["cmd", "/c"]; exttointerpreter[".bat"] = ["cmd", "/c"];
exttointerpreter[".cmd"] = ["cmd", "/c"];
exttointerpreter[".vbs"] = ["cscript"]; exttointerpreter[".vbs"] = ["cscript"];
} }
var exttointerpreteruser = {}; var exttointerpreteruser = {};