絵文字リアクション関係でいい感じにした

This commit is contained in:
na2na 2022-06-13 23:57:02 +09:00
parent b2875c9d90
commit b157d0a868
5 changed files with 23 additions and 2 deletions

View file

@ -507,4 +507,12 @@ export default class 藍 {
this.meta.update(rec);
}
/**
*
*/
@autobind
public isMaster(userId: User['id']): boolean {
return config.masterID === userId;
}
}

View file

@ -2,6 +2,7 @@ type Config = {
host: string;
i: string;
master?: string;
masterID?: string;
wsUrl: string;
apiUrl: string;
keywordEnabled: boolean;

View file

@ -85,7 +85,7 @@ promiseRetry(retry => {
new PingModule(),
new WelcomeModule(),
new ServerModule(),
new FollowModule(),
// new FollowModule(),
new BirthdayModule(),
new ValentineModule(),
new KeywordModule(),

View file

@ -1,6 +1,13 @@
export type Note = {
id: string;
createdAt: Date;
userId: string;
user: {
id: string;
},
text: string | null;
cw: string | null;
visibility: "public" | "home" | "followers" | "specified";
reply: any | null;
poll?: {
choices: {

View file

@ -91,7 +91,12 @@ export default class extends Module {
if (includes(note.text, ['寿司', 'sushi']) || note.text === 'すし') return react('🍣');
if (includes(note.text, ['ずなず']) || includes(note.text, ['ずにゃず'])) return react('🙌');
if (includes(note.text, ['なず']) || includes(note.text, ['にゃず'])) return react(':google_hart:');
if (includes(note.text, ['なず']) || includes(note.text, ['にゃず'])) {
if (this.ai.isMaster(note.userId)) {
return react(':google_hart:')
}
return react(':oltu:');
};
const gameReact = [
':ysvi:',