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

9 lines
197 B
JavaScript

this.inherits(COMMAND);
this.command = "tell";
this.allow_busy = true;
this.allow_state = true;
this.allow_die = true;
this.regex = /^(\w+)\s(.+)$/;
this.enter = function (me, target, cont) {
}