Bug Fixes, remove slow clap

This commit is contained in:
Daniel Odendahl Jr
2018-09-09 16:41:59 +00:00
parent 5fdc9c1853
commit 4cd7a4b06c
7 changed files with 12 additions and 29 deletions
+3 -3
View File
@@ -45,7 +45,7 @@ module.exports = class NekoAtsumePasswordCommand extends Command {
.get(`http://hpmobile.jp/app/nekoatsume/neko_daily${locale === 'jp' ? '' : `_${locale}`}.php`);
const data = text.split(',');
const date = new Date();
date.setUTCHours(date.getUTCHours() + 9);
date.setUTCHours(9);
return {
password: data[1],
silver: data[2],
@@ -56,10 +56,10 @@ module.exports = class NekoAtsumePasswordCommand extends Command {
}
get goldFish() {
return GOLD_FISH_EMOJI_ID ? `<:gold_fish:${GOLD_FISH_EMOJI_ID}>` : 'Gold Fish';
return GOLD_FISH_EMOJI_ID ? `<:goldFish:${GOLD_FISH_EMOJI_ID}>` : 'Gold Fish';
}
get silverFish() {
return SILVER_FISH_EMOJI_ID ? `<:silver_fish:${SILVER_FISH_EMOJI_ID}>` : 'Silver Fish';
return SILVER_FISH_EMOJI_ID ? `<:silverFish:${SILVER_FISH_EMOJI_ID}>` : 'Silver Fish';
}
};