This commit is contained in:
syuilo 2019-01-13 12:14:46 +09:00
parent eda2a6a798
commit d67903cb43
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -36,7 +36,8 @@ export default class CoreModule implements IModule {
this.hug(msg) ||
this.humu(msg) ||
this.batou(msg) ||
this.ponkotu(msg)
this.ponkotu(msg) ||
this.rmrf(msg)
);
}
@ -317,6 +318,16 @@ export default class CoreModule implements IModule {
};
}
private rmrf = (msg: MessageLike): boolean | Result => {
if (!msg.includes(['rm -rf'])) return false;
msg.friend.decLove();
return {
reaction: 'angry'
};
}
public onReplyThisModule = (msg: MessageLike, data: any) => {
if (msg.text == null) return;