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

14 lines
331 B
JavaScript

this.inherits(COMMAND);
this.command = "rumor";
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: "rumor", content: msg});
WORLD.sendAll(msg);
}