mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 10:44:55 -05:00
hashing fix real
This commit is contained in:
parent
b1f8f28f4e
commit
acf6f0cb00
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ module.exports = {
|
|||
const interval = setInterval(() => {
|
||||
bot.hash = crypto.createHash('sha256').update(Math.floor(Date.now() / 10000) + config.keys.normalKey).digest('hex').substring(0, 16);
|
||||
bot.ownerHash = crypto.createHash('sha256').update(Math.floor(Date.now() / 10000) + config.keys.ownerHashKey).digest('hex').substring(0, 16);
|
||||
}, 5000);
|
||||
}, 9000);
|
||||
bot.on('end', () => {
|
||||
clearInterval(interval);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue