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

10 lines
208 B
JavaScript

this.inherits(COMMAND);
this.command = "escape";
this.enter = function (me) {
if (!me.fight_type) {
return me.notify("你现在没有在战斗,逃跑干嘛?");
}
me.do_escape();
}