| 1255 | } |
| 1256 | |
| 1257 | void cmdHandler_SendConsoleOutput(const QStringList ¶ms, MapClientSession &sess) |
| 1258 | { |
| 1259 | if(params.size() < 1) |
| 1260 | { |
| 1261 | qCDebug(logSlashCommand) << "SendConsoleOutput. Bad invocation: " << params.join(" "); |
| 1262 | sendInfoMessage(MessageChannel::USER_ERROR, "ConsoleOutput format is '/consoleOutput <Message>'", sess); |
| 1263 | return; |
| 1264 | } |
| 1265 | |
| 1266 | QString msg = params.join(" "); |
| 1267 | sendDeveloperConsoleOutput(sess, msg); |
| 1268 | } |
| 1269 | |
| 1270 | void cmdHandler_SendConsolePrint(const QStringList ¶ms, MapClientSession &sess) |
| 1271 | { |
nothing calls this directly
no test coverage detected