Files
wsmud/world/cmd/channel/sys.js
2026-05-26 16:41:20 +08:00

16 lines
327 B
JavaScript

this.inherits(COMMAND);
this.command = "sys";
this.allow_busy = true;
this.allow_state = true;
this.enter = function (me, msg) {
if (me) return;
//if (!msg) {
// return;
//}
//msg = UTIL.htmlEncode(msg);
var msg = JSON.stringify({ type: "msg", ch: "sys", content: msg });
WORLD.sendAll(msg);
}