9 lines
197 B
JavaScript
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) {
|
|
|
|
} |