| 1268 | } |
| 1269 | |
| 1270 | void cmdHandler_SendConsolePrint(const QStringList ¶ms, MapClientSession &sess) |
| 1271 | { |
| 1272 | if(params.size() < 1) |
| 1273 | { |
| 1274 | qCDebug(logSlashCommand) << "SendConsolePrintF. Bad invocation: " << params.join(" "); |
| 1275 | sendInfoMessage(MessageChannel::USER_ERROR, "ConsolePrintF format is '/consolePrintF <Message>'", sess); |
| 1276 | return; |
| 1277 | } |
| 1278 | |
| 1279 | QString msg = params.join(" "); |
| 1280 | sendClientConsoleOutput(sess, msg); |
| 1281 | } |
| 1282 | |
| 1283 | void cmdHandler_ClearTarget(const QStringList ¶ms, MapClientSession &sess) |
| 1284 | { |
nothing calls this directly
no test coverage detected