Update serif

This commit is contained in:
syuilo 2018-09-04 11:17:28 +09:00
parent 13481451f3
commit fb668dc0f8
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@ export default class FortuneModule implements IModule {
const rng = seedrandom(seed);
const omikuji = omikujis[Math.floor(rng() * omikujis.length)];
const item = items[Math.floor(rng() * items.length)];
msg.reply(`**${omikuji}🎉**\nラッキーアイテム: ${item}`, serifs.fortune.cw);
msg.reply(`**${omikuji}🎉**\nラッキーアイテム: ${item}`, serifs.fortune.cw(msg.friend.name));
return true;
} else {
return false;

View file

@ -220,7 +220,7 @@ export default {
*
*/
fortune: {
cw: '私が今日のあなたの運勢を占いました...',
cw: name => name ? `私が今日の${name}の運勢を占いました...` : '私が今日のあなたの運勢を占いました...',
},
/**